[Python-checkins] r42641 - python/trunk/Lib/compiler/pyassem.py

guido.van.rossum python-checkins at python.org
Tue Feb 28 01:40:16 CET 2006


Author: guido.van.rossum
Date: Tue Feb 28 01:40:16 2006
New Revision: 42641

Modified:
   python/trunk/Lib/compiler/pyassem.py
Log:
Forgot to explain the effect of the new opcode.
Sigh -- we really should have one place for all opcode metadata.


Modified: python/trunk/Lib/compiler/pyassem.py
==============================================================================
--- python/trunk/Lib/compiler/pyassem.py	(original)
+++ python/trunk/Lib/compiler/pyassem.py	Tue Feb 28 01:40:16 2006
@@ -778,6 +778,7 @@
         'SETUP_EXCEPT': 3,
         'SETUP_FINALLY': 3,
         'FOR_ITER': 1,
+        'WITH_CLEANUP': 3,
         }
     # use pattern match
     patterns = [


More information about the Python-checkins mailing list