diff options
author | Guido van Rossum <guido@python.org> | 2002-06-13 11:53:12 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2002-06-13 11:53:12 (GMT) |
commit | 3fcd45230f37f3debb465e423b42c89d0af6e5f0 (patch) | |
tree | e6fe39989d1dc53423ef270292fe169847fcc8b9 /Lib/test/test_gc.py | |
parent | 178153f8d6f84cadf66e1d313c7b5800e3272fcf (diff) | |
download | cpython-3fcd45230f37f3debb465e423b42c89d0af6e5f0.zip cpython-3fcd45230f37f3debb465e423b42c89d0af6e5f0.tar.gz cpython-3fcd45230f37f3debb465e423b42c89d0af6e5f0.tar.bz2 |
Whitespace nit.
Diffstat (limited to 'Lib/test/test_gc.py')
-rw-r--r-- | Lib/test/test_gc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_gc.py b/Lib/test/test_gc.py index 23bb7c5..751206a 100644 --- a/Lib/test/test_gc.py +++ b/Lib/test/test_gc.py @@ -228,7 +228,7 @@ def test(): print "disabling automatic collection" enabled = gc.isenabled() gc.disable() - verify(not gc.isenabled() ) + verify(not gc.isenabled()) debug = gc.get_debug() gc.set_debug(debug & ~gc.DEBUG_LEAK) # this test is supposed to leak |