summaryrefslogtreecommitdiff
path: root/Lib/test
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2009-10-30 17:56:00 +0000
committerAntoine Pitrou <solipsis@pitrou.net>2009-10-30 17:56:00 +0000
commit3c96858480f7ffc813859c47e478340fafc54c6b (patch)
tree07859b62a25c3d84d56ed2e483ffbabc6c64cba4 /Lib/test
parent643e85df48c87f082b16ca9e4ac02856130fbdb3 (diff)
downloadcpython-git-3c96858480f7ffc813859c47e478340fafc54c6b.tar.gz
Try to fix transient refleaks in test_xmlrpc.
Diffstat (limited to 'Lib/test')
-rw-r--r--Lib/test/test_xmlrpc.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_xmlrpc.py b/Lib/test/test_xmlrpc.py
index 13db50f4d6..87bfb1f68e 100644
--- a/Lib/test/test_xmlrpc.py
+++ b/Lib/test/test_xmlrpc.py
@@ -973,6 +973,7 @@ class TransportSubclassTestCase(unittest.TestCase):
req = self.issue_request(TestTransport)
self.assertTrue("X-Test: test_send_content\r\n" in req)
+@test_support.reap_threads
def test_main():
xmlrpc_tests = [XMLRPCTestCase, HelperTestCase, DateTimeTestCase,
BinaryTestCase, FaultTestCase, TransportSubclassTestCase]