diff options
author | Carl Friedrich Bolz-Tereick <cfbolz@gmx.de> | 2021-04-04 08:55:06 +0200 |
---|---|---|
committer | Carl Friedrich Bolz-Tereick <cfbolz@gmx.de> | 2021-04-04 08:55:06 +0200 |
commit | e43f16347cb23425bfb17ce05448d2e83cfa8697 (patch) | |
tree | becd11ea1a1544d87ee61a2b6ed80f63f5188605 /lib-python/3/opcode.py | |
parent | if False is constant-folded nowadays (diff) | |
download | pypy-e43f16347cb23425bfb17ce05448d2e83cfa8697.tar.gz pypy-e43f16347cb23425bfb17ce05448d2e83cfa8697.tar.bz2 pypy-e43f16347cb23425bfb17ce05448d2e83cfa8697.zip |
a bit of cleanup, fix translation
Diffstat (limited to 'lib-python/3/opcode.py')
-rw-r--r-- | lib-python/3/opcode.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib-python/3/opcode.py b/lib-python/3/opcode.py index 8733f19efb..d98a762da0 100644 --- a/lib-python/3/opcode.py +++ b/lib-python/3/opcode.py @@ -115,7 +115,6 @@ def_op('INPLACE_RSHIFT', 76) def_op('INPLACE_AND', 77) def_op('INPLACE_XOR', 78) def_op('INPLACE_OR', 79) -def_op('BREAK_LOOP', 80) def_op('WITH_CLEANUP_START', 81) def_op('WITH_CLEANUP_FINISH', 82) @@ -160,8 +159,6 @@ jabs_op('POP_JUMP_IF_TRUE', 115) # "" name_op('LOAD_GLOBAL', 116) # Index in name list -jabs_op('CONTINUE_LOOP', 119) # Target address -#jrel_op('SETUP_LOOP', 120) # Distance to target address jrel_op('SETUP_EXCEPT', 121) # "" jrel_op('SETUP_FINALLY', 122) # Distance to target address |