Commit 2e6d25c5 authored by Fred Drake's avatar Fred Drake

Use 4-space indents.

parent 2ec80faa
...@@ -36,14 +36,14 @@ fp.close() ...@@ -36,14 +36,14 @@ fp.close()
fp = open(TESTFN, 'r') fp = open(TESTFN, 'r')
savestdin = sys.stdin savestdin = sys.stdin
try: try:
try: try:
sys.stdin = fp sys.stdin = fp
x = raw_input() x = raw_input()
except EOFError: except EOFError:
pass pass
finally: finally:
sys.stdin = savestdin sys.stdin = savestdin
fp.close() fp.close()
r(IOError) r(IOError)
try: open('this file does not exist', 'r') try: open('this file does not exist', 'r')
...@@ -76,7 +76,7 @@ except NameError: pass ...@@ -76,7 +76,7 @@ except NameError: pass
r(OverflowError) r(OverflowError)
x = 1 x = 1
try: try:
while 1: x = x+x while 1: x = x+x
except OverflowError: pass except OverflowError: pass
r(RuntimeError) r(RuntimeError)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment