diff options
| author | Antoine Pitrou <solipsis@pitrou.net> | 2008-12-17 00:38:28 (GMT) | 
|---|---|---|
| committer | Antoine Pitrou <solipsis@pitrou.net> | 2008-12-17 00:38:28 (GMT) | 
| commit | d0c3515bc5b31a19d00bfc685d7657ad7d79fa94 (patch) | |
| tree | 299253e76cf9b66349bdaf0cca8c95da19671c74 /Lib/opcode.py | |
| parent | 43caaa09ea364aab6cbd7ede2aa9c3d004a129a5 (diff) | |
| download | cpython-d0c3515bc5b31a19d00bfc685d7657ad7d79fa94.zip cpython-d0c3515bc5b31a19d00bfc685d7657ad7d79fa94.tar.gz cpython-d0c3515bc5b31a19d00bfc685d7657ad7d79fa94.tar.bz2  | |
Issue #2183: Simplify and optimize bytecode for list comprehensions.
Diffstat (limited to 'Lib/opcode.py')
| -rw-r--r-- | Lib/opcode.py | 3 | 
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/opcode.py b/Lib/opcode.py index cee5057..d41383b 100644 --- a/Lib/opcode.py +++ b/Lib/opcode.py @@ -58,7 +58,6 @@ def_op('UNARY_CONVERT', 13)  def_op('UNARY_INVERT', 15) -def_op('LIST_APPEND', 18)  def_op('BINARY_POWER', 19)  def_op('BINARY_MULTIPLY', 20)  def_op('BINARY_DIVIDE', 21) @@ -128,7 +127,7 @@ name_op('STORE_NAME', 90)       # Index in name list  name_op('DELETE_NAME', 91)      # ""  def_op('UNPACK_SEQUENCE', 92)   # Number of tuple items  jrel_op('FOR_ITER', 93) - +def_op('LIST_APPEND', 94)  name_op('STORE_ATTR', 95)       # Index in name list  name_op('DELETE_ATTR', 96)      # ""  name_op('STORE_GLOBAL', 97)     # ""  | 
