diff options
Diffstat (limited to 'Lib/test')
-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) - |