summaryrefslogtreecommitdiff
path: root/Lib/test/test_imaplib.py
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-11-09 23:15:18 +0000
committerAntoine Pitrou <solipsis@pitrou.net>2010-11-09 23:15:18 +0000
commitb3bd83a00f6d5735089d07e46291e74ad73548a9 (patch)
treedc34ed7ef4b43cb50e7319913d0f288739e7b9c3 /Lib/test/test_imaplib.py
parentcab0621b7e9c8555eb5597ff94c6b8b7091011a9 (diff)
downloadcpython-b3bd83a00f6d5735089d07e46291e74ad73548a9.tar.gz
Merged revisions 86383 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r86383 | antoine.pitrou | 2010-11-10 00:10:33 +0100 (mer., 10 nov. 2010) | 4 lines Issue #4471: Properly shutdown socket in IMAP.shutdown(). Patch by Lorenzo M. Catucci. ........
Diffstat (limited to 'Lib/test/test_imaplib.py')
-rw-r--r--Lib/test/test_imaplib.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_imaplib.py b/Lib/test/test_imaplib.py
index a04ae65dfb..00db29db27 100644
--- a/Lib/test/test_imaplib.py
+++ b/Lib/test/test_imaplib.py
@@ -203,6 +203,7 @@ class RemoteIMAPTest(unittest.TestCase):
def test_logout(self):
rs = self.server.logout()
+ self.server = None
self.assertEqual(rs[0], 'BYE')