Discussion:
[Python-3000-checkins] r65160 - python/branches/py3k/Lib/opcode.py
georg.brandl
2008-07-20 21:38:50 UTC
Permalink
Author: georg.brandl
Date: Sun Jul 20 23:38:50 2008
New Revision: 65160

Log:
Remove MAKE_BYTES which is a leftover from the mutable byte literal time.


Modified:
python/branches/py3k/Lib/opcode.py

Modified: python/branches/py3k/Lib/opcode.py
==============================================================================
--- python/branches/py3k/Lib/opcode.py (original)
+++ python/branches/py3k/Lib/opcode.py Sun Jul 20 23:38:50 2008
@@ -101,7 +101,7 @@

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)

Loading...