diff -r f003ef13c555 Lib/test/test_builtin.py --- a/Lib/test/test_builtin.py Wed Feb 12 10:55:07 2014 +0200 +++ b/Lib/test/test_builtin.py Wed Feb 12 12:36:01 2014 +0200 @@ -1604,10 +1604,10 @@ 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