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

thomas.wouters python-3000-checkins at python.org
Tue Mar 18 21:13:50 CET 2008


Author: thomas.wouters
Date: Tue Mar 18 21:13:50 2008
New Revision: 61557

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

Add missing UNPACK_EX opcode.



Modified: python/branches/py3k/Lib/opcode.py
==============================================================================
--- python/branches/py3k/Lib/opcode.py	(original)
+++ python/branches/py3k/Lib/opcode.py	Tue Mar 18 21:13:50 2008
@@ -112,7 +112,7 @@
 name_op('DELETE_NAME', 91)      # ""
 def_op('UNPACK_SEQUENCE', 92)   # Number of tuple items
 jrel_op('FOR_ITER', 93)
-
+def_op('UNPACK_EX', 94)
 name_op('STORE_ATTR', 95)       # Index in name list
 name_op('DELETE_ATTR', 96)      # ""
 name_op('STORE_GLOBAL', 97)     # ""


More information about the Python-3000-checkins mailing list