diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-03-16 08:29:48 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-03-16 08:29:48 (GMT) |
commit | 30edd2387d5d5c1a266956434ebaed59ccfb923f (patch) | |
tree | 216e794450d897bed9a4077ec5037d2d662081e4 /Lib/test/test_scope.py | |
parent | 4cf97c4972307f9187960c61f3c8cdd958d9520e (diff) | |
download | cpython-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.py | 5 |
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) - |