summaryrefslogtreecommitdiffstats
path: root/Lib/test
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test')
-rw-r--r--Lib/test/test_exceptions.py9
-rw-r--r--Lib/test/test_opcodes.py1
2 files changed, 5 insertions, 5 deletions
diff --git a/Lib/test/test_exceptions.py b/Lib/test/test_exceptions.py
index 7ee6e21..cf7c50d 100644
--- a/Lib/test/test_exceptions.py
+++ b/Lib/test/test_exceptions.py
@@ -19,10 +19,11 @@ fp.close()
fp = open(TESTFN, 'r')
savestdin = sys.stdin
try:
- sys.stdin = fp
- x = raw_input()
-except EOFError:
- pass
+ try:
+ sys.stdin = fp
+ x = raw_input()
+ except EOFError:
+ pass
finally:
sys.stdin = savestdin
fp.close()
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