diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2014-02-12 12:40:22 +0200 |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2014-02-12 12:40:22 +0200 |
commit | f86b43382311370d099b1ba9995093a2e0252605 (patch) | |
tree | ee40ac2b96c6201b5894908391248661fcc565d1 /Lib/test/test_builtin.py | |
parent | 3b4ce690fdd7b3fba5a93b98f95129661338db4d (diff) | |
download | cpython-git-f86b43382311370d099b1ba9995093a2e0252605.tar.gz |
Try to fix test_cleanup (issue #20599).
Diffstat (limited to 'Lib/test/test_builtin.py')
-rw-r--r-- | Lib/test/test_builtin.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_builtin.py b/Lib/test/test_builtin.py index c078b443c5..8a307b976a 100644 --- a/Lib/test/test_builtin.py +++ b/Lib/test/test_builtin.py @@ -1604,10 +1604,10 @@ class ShutdownTest(unittest.TestCase): class C: def __del__(self): - print("before") + print("before", flush=True) # Check that builtins still exist len(()) - print("after") + print("after", flush=True) c = C() # Make this module survive until builtins and sys are cleaned |