summaryrefslogtreecommitdiff
path: root/Lib/compiler/pycodegen.py
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
commite2e23ef97da1ce44c604d86d1f21c2701d7e581f (patch)
treebca7dc409238d532748ec23f9ffb89c7d4f99e01 /Lib/compiler/pycodegen.py
parent5f5cfd121db044b5adf5d9da29fed0d31fec1814 (diff)
downloadcpython-git-e2e23ef97da1ce44c604d86d1f21c2701d7e581f.tar.gz
Remove the UNARY_CONVERT opcode (was used for backticks). Also bumped up the
import MAGIC number.
Diffstat (limited to 'Lib/compiler/pycodegen.py')
-rw-r--r--Lib/compiler/pycodegen.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/Lib/compiler/pycodegen.py b/Lib/compiler/pycodegen.py
index db2251e6f8..cc197e307b 100644
--- a/Lib/compiler/pycodegen.py
+++ b/Lib/compiler/pycodegen.py
@@ -1207,9 +1207,6 @@ class CodeGenerator:
def visitNot(self, node):
return self.unaryOp(node, 'UNARY_NOT')
- def visitBackquote(self, node):
- return self.unaryOp(node, 'UNARY_CONVERT')
-
# bit ops
def bitOp(self, nodes, op):