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. --- Lib/compiler/pycodegen.py | 3 --- 1 file changed, 3 deletions(-) (limited to 'Lib/compiler/pycodegen.py') 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): -- cgit v1.2.1