summaryrefslogtreecommitdiffstats
path: root/Lib/opcode.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2008-07-20 21:38:50 (GMT)
committerGeorg Brandl <georg@python.org>2008-07-20 21:38:50 (GMT)
commitdbdbf75983e57abfe4974ca790f352f878ab1360 (patch)
tree0deec46fe0c49e2936e94f93e19302297d930c04 /Lib/opcode.py
parentf1123694634045aa164a5cb31ed0fbb69f80d897 (diff)
downloadcpython-dbdbf75983e57abfe4974ca790f352f878ab1360.zip
cpython-dbdbf75983e57abfe4974ca790f352f878ab1360.tar.gz
cpython-dbdbf75983e57abfe4974ca790f352f878ab1360.tar.bz2
Remove MAKE_BYTES which is a leftover from the mutable byte literal time.
Diffstat (limited to 'Lib/opcode.py')
-rw-r--r--Lib/opcode.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/opcode.py b/Lib/opcode.py
index 50e10ee..5fd9c21 100644
--- a/Lib/opcode.py
+++ b/Lib/opcode.py
@@ -101,7 +101,7 @@ def_op('WITH_CLEANUP', 81)
def_op('RETURN_VALUE', 83)
def_op('IMPORT_STAR', 84)
-def_op('MAKE_BYTES', 85)
+
def_op('YIELD_VALUE', 86)
def_op('POP_BLOCK', 87)
def_op('END_FINALLY', 88)