summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_logging.py
diff options
context:
space:
mode:
authorVinay Sajip <vinay_sajip@yahoo.co.uk>2012-05-03 11:09:38 (GMT)
committerVinay Sajip <vinay_sajip@yahoo.co.uk>2012-05-03 11:09:38 (GMT)
commitac20f463da361647789a758c9ae45a4e77f03ebd (patch)
treee477b70f049b31dd9812843b878169ca091be7c4 /Lib/test/test_logging.py
parent1b487b467bd76f7cd82ada88048c0cd0522bc314 (diff)
parent89282afafbdc29903ff1c29ea26d5510572d494a (diff)
downloadcpython-ac20f463da361647789a758c9ae45a4e77f03ebd.zip
cpython-ac20f463da361647789a758c9ae45a4e77f03ebd.tar.gz
cpython-ac20f463da361647789a758c9ae45a4e77f03ebd.tar.bz2
Merged hanged order of cleanup operations from 3.2.
Diffstat (limited to 'Lib/test/test_logging.py')
-rw-r--r--Lib/test/test_logging.py2
1 files changed, 1 insertions, 1 deletions
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 @@ class HandlerTest(BaseTest):
r = logging.makeLogRecord({'msg': 'testing' })
h.handle(r)
finally:
- h.close()
remover.join()
+ h.close()
if os.path.exists(fn):
os.unlink(fn)