diff options
author | Armin Rigo <arigo@tunes.org> | 2017-01-22 22:48:06 +0100 |
---|---|---|
committer | Armin Rigo <arigo@tunes.org> | 2017-01-22 22:48:06 +0100 |
commit | df3d587f0818ca1a114cd430cc889c0bf1baab2f (patch) | |
tree | b2c1e222209cb8c2069da1fe8310ea968f57fc81 /lib-python/3/opcode.py | |
parent | ast -> bytecode, minimal (diff) | |
download | pypy-df3d587f0818ca1a114cd430cc889c0bf1baab2f.tar.gz pypy-df3d587f0818ca1a114cd430cc889c0bf1baab2f.tar.bz2 pypy-df3d587f0818ca1a114cd430cc889c0bf1baab2f.zip |
bytecode interpreter
Diffstat (limited to 'lib-python/3/opcode.py')
-rw-r--r-- | lib-python/3/opcode.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib-python/3/opcode.py b/lib-python/3/opcode.py index 1da843202a..ccc9c00aa3 100644 --- a/lib-python/3/opcode.py +++ b/lib-python/3/opcode.py @@ -214,8 +214,8 @@ def_op('BUILD_MAP_UNPACK_WITH_CALL', 151) def_op('BUILD_TUPLE_UNPACK', 152) def_op('BUILD_SET_UNPACK', 153) -def_op('FORMAT_VALUE', 155) -def_op('BUILD_STRING', 157) +def_op('FORMAT_VALUE', 155) # in CPython 3.6, but available in PyPy from 3.5 +def_op('BUILD_STRING', 157) # in CPython 3.6, but available in PyPy from 3.5 # pypy modification, experimental bytecode def_op('LOOKUP_METHOD', 201) # Index in name list |