commit | 7961bb304370dddd896877155bc13e2828525195 | [log] [tgz] |
---|---|---|
author | Vinay Sajip <vinay_sajip@yahoo.co.uk> | Sat May 19 16:52:33 2012 +0100 |
committer | Vinay Sajip <vinay_sajip@yahoo.co.uk> | Sat May 19 16:52:33 2012 +0100 |
tree | b2441c178cb4007ea2cc90f37ffffbc7e5b00412 | |
parent | 7b57750db50ea876b60a75759f5101ac8736dadb [diff] | |
parent | 5f39706b07bc16fd7affc99fd485592f71c13979 [diff] |
Merged upstream changes.
diff --git a/Lib/test/test_logging.py b/Lib/test/test_logging.py index a06deff..08e2dca 100644 --- a/Lib/test/test_logging.py +++ b/Lib/test/test_logging.py
@@ -1907,7 +1907,10 @@ h.handle(r) finally: remover.join() - h.close() + try: + h.close() + except ValueError: + pass if os.path.exists(fn): os.unlink(fn)