diff options
author | Guido van Rossum <guido@python.org> | 1996-07-30 16:26:07 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-07-30 16:26:07 +0000 |
commit | 56a733856e4e06952c7d6cae1a7d85d7a870f922 (patch) | |
tree | 7151b88ca388239b3554cb8b35236e680fbe7a02 /Lib/dis.py | |
parent | 8ec318d43b7d3201fc3ac706f944b0f44d191ccb (diff) | |
download | cpython-56a733856e4e06952c7d6cae1a7d85d7a870f922.tar.gz cpython-56a733856e4e06952c7d6cae1a7d85d7a870f922.zip |
Added BUILD_SLICE opcode.
Diffstat (limited to 'Lib/dis.py')
-rw-r--r-- | Lib/dis.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/dis.py b/Lib/dis.py index 897bc6d8fc9..94480bbc9d3 100644 --- a/Lib/dis.py +++ b/Lib/dis.py @@ -193,3 +193,4 @@ SET_LINENO = 127 def_op('RAISE_VARARGS', 130) def_op('CALL_FUNCTION', 131) def_op('MAKE_FUNCTION', 132) +def_op('BUILD_SLICE', 133) |