diff options
author | Guido van Rossum <guido@python.org> | 2006-02-28 00:40:16 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2006-02-28 00:40:16 (GMT) |
commit | baf3eb241027455bb7825293957df4346f2393d7 (patch) | |
tree | 42c7077407cc874184df577fd8d46b252137ceec /Lib/compiler | |
parent | b003f041bbc6c8d2d8a3ecc80ece9441222b213b (diff) | |
download | cpython-baf3eb241027455bb7825293957df4346f2393d7.zip cpython-baf3eb241027455bb7825293957df4346f2393d7.tar.gz cpython-baf3eb241027455bb7825293957df4346f2393d7.tar.bz2 |
Forgot to explain the effect of the new opcode.
Sigh -- we really should have one place for all opcode metadata.
Diffstat (limited to 'Lib/compiler')
-rw-r--r-- | Lib/compiler/pyassem.py | 1 |
1 files changed, 1 insertions, 0 deletions
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 = [ |