commit | ac20f463da361647789a758c9ae45a4e77f03ebd | [log] [tgz] |
---|---|---|
author | Vinay Sajip <vinay_sajip@yahoo.co.uk> | Thu May 03 12:09:38 2012 +0100 |
committer | Vinay Sajip <vinay_sajip@yahoo.co.uk> | Thu May 03 12:09:38 2012 +0100 |
tree | e477b70f049b31dd9812843b878169ca091be7c4 | |
parent | 1b487b467bd76f7cd82ada88048c0cd0522bc314 [diff] [blame] | |
parent | 89282afafbdc29903ff1c29ea26d5510572d494a [diff] [blame] |
Merged hanged order of cleanup operations from 3.2.
diff --git a/Lib/test/test_logging.py b/Lib/test/test_logging.py index 2279952..3adeaec 100644 --- a/Lib/test/test_logging.py +++ b/Lib/test/test_logging.py
@@ -611,8 +611,8 @@ r = logging.makeLogRecord({'msg': 'testing' }) h.handle(r) finally: - h.close() remover.join() + h.close() if os.path.exists(fn): os.unlink(fn)