From baf3eb241027455bb7825293957df4346f2393d7 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Tue, 28 Feb 2006 00:40:16 +0000 Subject: Forgot to explain the effect of the new opcode. Sigh -- we really should have one place for all opcode metadata. --- Lib/compiler/pyassem.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Lib/compiler/pyassem.py b/Lib/compiler/pyassem.py index 7b6cee6..22a19c7 100644 --- a/Lib/compiler/pyassem.py +++ b/Lib/compiler/pyassem.py @@ -778,6 +778,7 @@ class StackDepthTracker: 'SETUP_EXCEPT': 3, 'SETUP_FINALLY': 3, 'FOR_ITER': 1, + 'WITH_CLEANUP': 3, } # use pattern match patterns = [ -- cgit v0.12