summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_scope.py
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2001-03-16 08:29:48 (GMT)
committerTim Peters <tim.peters@gmail.com>2001-03-16 08:29:48 (GMT)
commit30edd2387d5d5c1a266956434ebaed59ccfb923f (patch)
tree216e794450d897bed9a4077ec5037d2d662081e4 /Lib/test/test_scope.py
parent4cf97c4972307f9187960c61f3c8cdd958d9520e (diff)
downloadcpython-30edd2387d5d5c1a266956434ebaed59ccfb923f.zip
cpython-30edd2387d5d5c1a266956434ebaed59ccfb923f.tar.gz
cpython-30edd2387d5d5c1a266956434ebaed59ccfb923f.tar.bz2
Whitespace normalization.
Diffstat (limited to 'Lib/test/test_scope.py')
-rw-r--r--Lib/test/test_scope.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/Lib/test/test_scope.py b/Lib/test/test_scope.py
index 4bd8ed7..5df0328 100644
--- a/Lib/test/test_scope.py
+++ b/Lib/test/test_scope.py
@@ -388,7 +388,7 @@ print "16. check leaks"
class Foo:
count = 0
-
+
def __init__(self):
Foo.count += 1
@@ -400,9 +400,8 @@ def f1():
def f2():
return x
f2()
-
+
for i in range(100):
f1()
verify(Foo.count == 0)
-