commit | 30edd2387d5d5c1a266956434ebaed59ccfb923f | [log] [tgz] |
---|---|---|
author | Tim Peters <tim.peters@gmail.com> | Fri Mar 16 08:29:48 2001 +0000 |
committer | Tim Peters <tim.peters@gmail.com> | Fri Mar 16 08:29:48 2001 +0000 |
tree | 216e794450d897bed9a4077ec5037d2d662081e4 | |
parent | 4cf97c4972307f9187960c61f3c8cdd958d9520e [diff] [blame] |
Whitespace normalization.
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 @@ class Foo: count = 0 - + def __init__(self): Foo.count += 1 @@ -400,9 +400,8 @@ def f2(): return x f2() - + for i in range(100): f1() verify(Foo.count == 0) -