summaryrefslogtreecommitdiff
path: root/Python/peephole.c
diff options
context:
space:
mode:
authorBrett Cannon <bcannon@gmail.com>2006-08-25 05:05:30 +0000
committerBrett Cannon <bcannon@gmail.com>2006-08-25 05:05:30 +0000
commit3f7ac48bf603565fad92cbf565ac97801814e9e1 (patch)
treeb292dab59b5c8c08ff167a4ba3668f25a34dc766 /Python/peephole.c
parentbbf77970899b83bb0bf554067c49b21877c560d0 (diff)
downloadcpython-3f7ac48bf603565fad92cbf565ac97801814e9e1.tar.gz
Remove the UNARY_CONVERT opcode (was used for backticks). Also bumped up the
import MAGIC number.
Diffstat (limited to 'Python/peephole.c')
-rw-r--r--Python/peephole.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/Python/peephole.c b/Python/peephole.c
index 836d3983c9..1459960958 100644
--- a/Python/peephole.c
+++ b/Python/peephole.c
@@ -189,9 +189,6 @@ fold_unaryops_on_constants(unsigned char *codestr, PyObject *consts)
if (PyObject_IsTrue(v) == 1)
newconst = PyNumber_Negative(v);
break;
- case UNARY_CONVERT:
- newconst = PyObject_Repr(v);
- break;
case UNARY_INVERT:
newconst = PyNumber_Invert(v);
break;
@@ -470,7 +467,6 @@ PyCode_Optimize(PyObject *code, PyObject* consts, PyObject *names,
/* Fold unary ops on constants.
LOAD_CONST c1 UNARY_OP --> LOAD_CONST unary_op(c) */
case UNARY_NEGATIVE:
- case UNARY_CONVERT:
case UNARY_INVERT:
if (lastlc >= 1 &&
ISBASICBLOCK(blocks, i-3, 4) &&