diff options
author | Tim Peters <tim.peters@gmail.com> | 2006-05-27 14:13:13 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2006-05-27 14:13:13 (GMT) |
commit | 4e30617bad4c41ea8d33cf4e7b79f3dcf90bd5b7 (patch) | |
tree | 5d82c2ded0a067381d4dcdb6b8d5d02b0203dca5 /Lib | |
parent | e895318ee23c28add6f9b81d4668be504384f097 (diff) | |
download | cpython-4e30617bad4c41ea8d33cf4e7b79f3dcf90bd5b7.zip cpython-4e30617bad4c41ea8d33cf4e7b79f3dcf90bd5b7.tar.gz cpython-4e30617bad4c41ea8d33cf4e7b79f3dcf90bd5b7.tar.bz2 |
The cheery optimism of old age.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_tarfile.py | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/Lib/test/test_tarfile.py b/Lib/test/test_tarfile.py index 62423da..8ee0f41 100644 --- a/Lib/test/test_tarfile.py +++ b/Lib/test/test_tarfile.py @@ -633,19 +633,7 @@ def test_main(): if gzip: os.remove(tarname("gz")) if bz2: - # Grrr. This frequently blows up on the Windows buildbot - # slaves. No idea why. Adding more output to try to guess - # something. Can't reproduce at will. - import time, sys - for dummy in range(10): - try: - os.remove(tarname("bz2")) - except OSError, msg: - print >> sys.stderr, \ - "test_tarfile final cleanup crapped out %s" % msg - time.sleep(1) - else: - break + os.remove(tarname("bz2")) if os.path.exists(dirname()): shutil.rmtree(dirname()) if os.path.exists(tmpname()): |