diff options
author | Guido van Rossum <guido@python.org> | 1992-05-06 11:39:49 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1992-05-06 11:39:49 (GMT) |
commit | 9ea0fbc6de1162a90ef8028078f26c0b3f0352e0 (patch) | |
tree | 0e02fbf833d8f37166aa3c98e584d725b8ed1d4b /Lib/test/test_opcodes.py | |
parent | 8899a9ca400b90100c2f05eea7211d00b30e4843 (diff) | |
download | cpython-9ea0fbc6de1162a90ef8028078f26c0b3f0352e0.zip cpython-9ea0fbc6de1162a90ef8028078f26c0b3f0352e0.tar.gz cpython-9ea0fbc6de1162a90ef8028078f26c0b3f0352e0.tar.bz2 |
Unmerged except and finally clauses
Diffstat (limited to 'Lib/test/test_opcodes.py')
-rw-r--r-- | Lib/test/test_opcodes.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/test/test_opcodes.py b/Lib/test/test_opcodes.py index 41f1b8f..4cc6ee9 100644 --- a/Lib/test/test_opcodes.py +++ b/Lib/test/test_opcodes.py @@ -14,7 +14,6 @@ for i in range(10): except NameError: pass except ZeroDivisionError: pass except TypeError: pass - finally: pass try: pass except: pass try: pass |