diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-11-12 19:36:29 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-11-12 19:36:29 (GMT) |
commit | e0815e2db04c1b4d06163cbe4b0ea76119b41f96 (patch) | |
tree | fe3089cc6faeeafd88b92084f8ef6d00c753acf4 | |
parent | bf9d34ce7e8b25bdbd41b34a042dd8695e2dbb7a (diff) | |
download | cpython-e0815e2db04c1b4d06163cbe4b0ea76119b41f96.zip cpython-e0815e2db04c1b4d06163cbe4b0ea76119b41f96.tar.gz cpython-e0815e2db04c1b4d06163cbe4b0ea76119b41f96.tar.bz2 |
Restore smtpd.DEBUGSTREAM at the end of test_smtpd.
This fixes a subsequent refleak in test_smtplib.
-rw-r--r-- | Lib/test/test_smtpd.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/test/test_smtpd.py b/Lib/test/test_smtpd.py index a4cd670..68ccc29 100644 --- a/Lib/test/test_smtpd.py +++ b/Lib/test/test_smtpd.py @@ -52,6 +52,7 @@ class SMTPDServerTest(TestCase): class SMTPDChannelTest(TestCase): def setUp(self): smtpd.socket = asyncore.socket = mock_socket + self.old_debugstream = smtpd.DEBUGSTREAM self.debug = smtpd.DEBUGSTREAM = io.StringIO() self.server = DummyServer('a', 'b') conn, addr = self.server.accept() @@ -60,6 +61,7 @@ class SMTPDChannelTest(TestCase): def tearDown(self): asyncore.close_all() asyncore.socket = smtpd.socket = socket + smtpd.DEBUGSTREAM = self.old_debugstream def write_line(self, line): self.channel.socket.queue_recv(line) |