commit | d05f9ad30231029da69286ed3dc8eba0002499df | [log] [tgz] |
---|---|---|
author | Antoine Pitrou <solipsis@pitrou.net> | Fri Oct 29 23:55:55 2010 +0000 |
committer | Antoine Pitrou <solipsis@pitrou.net> | Fri Oct 29 23:55:55 2010 +0000 |
tree | ebe8f28aead6d75021eac6da255ede1b2fcbc73e | |
parent | 0174368449b01720ea117898fc6d4c9341689011 [diff] [blame] |
Windows can't remove a file before it is closed
diff --git a/Lib/test/test_cprofile.py b/Lib/test/test_cprofile.py index d7f9d72..ae17c2b 100644 --- a/Lib/test/test_cprofile.py +++ b/Lib/test/test_cprofile.py
@@ -27,7 +27,7 @@ obj.disable() finally: sys.stderr = sys.__stderr__ - unlink(TESTFN) + unlink(TESTFN) def test_main():