From e2e23ef97da1ce44c604d86d1f21c2701d7e581f Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Fri, 25 Aug 2006 05:05:30 +0000 Subject: Remove the UNARY_CONVERT opcode (was used for backticks). Also bumped up the import MAGIC number. --- Python/ceval.c | 8 -------- 1 file changed, 8 deletions(-) (limited to 'Python/ceval.c') diff --git a/Python/ceval.c b/Python/ceval.c index b33c16bd90..95def9a954 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -1040,14 +1040,6 @@ PyEval_EvalFrameEx(PyFrameObject *f, int throwflag) STACKADJ(-1); break; - case UNARY_CONVERT: - v = TOP(); - x = PyObject_Repr(v); - Py_DECREF(v); - SET_TOP(x); - if (x != NULL) continue; - break; - case UNARY_INVERT: v = TOP(); x = PyNumber_Invert(v); -- cgit v1.2.1