commit | 643e85df48c87f082b16ca9e4ac02856130fbdb3 | [log] [tgz] |
---|---|---|
author | Antoine Pitrou <solipsis@pitrou.net> | Fri Oct 30 17:55:21 2009 +0000 |
committer | Antoine Pitrou <solipsis@pitrou.net> | Fri Oct 30 17:55:21 2009 +0000 |
tree | b7ddde6f6367ba2a1201f3ce25bf216798f9a251 | |
parent | 61d5f6ff7998e2dfdb21ec73d4aa2ef7a1f2e144 [diff] [blame] |
Try to fix transient refleaks in test_asynchat.
diff --git a/Lib/test/test_asynchat.py b/Lib/test/test_asynchat.py index 14528d8..caa1117 100644 --- a/Lib/test/test_asynchat.py +++ b/Lib/test/test_asynchat.py
@@ -92,10 +92,10 @@ usepoll = False def setUp (self): - pass + self._threads = test_support.threading_setup() def tearDown (self): - pass + test_support.threading_cleanup(*self._threads) def line_terminator_check(self, term, server_chunk): event = threading.Event()