mirror of
https://github.com/python/cpython.git
synced 2025-08-29 13:15:11 +00:00
Remove the UNARY_CONVERT opcode (was used for backticks). Also bumped up the
import MAGIC number.
This commit is contained in:
parent
5f5cfd121d
commit
e2e23ef97d
12 changed files with 4 additions and 74 deletions
|
@ -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):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue