[Python-3000-checkins] r65160 - python/branches/py3k/Lib/opcode.py

georg.brandl python-3000-checkins at python.org
Sun Jul 20 23:38:50 CEST 2008


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)


More information about the Python-3000-checkins mailing list