diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2010-11-09 23:15:18 +0000 |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2010-11-09 23:15:18 +0000 |
commit | 7eaa448e59689999371b40316600c6c9f861c5b2 (patch) | |
tree | f735905ab16c970ac47ebc57a101f36de4c2d2dc /Lib/test/test_imaplib.py | |
parent | f728f5a3eaa135667b717e4dfeedb150d6e46c7f (diff) | |
download | cpython-git-7eaa448e59689999371b40316600c6c9f861c5b2.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.py | 1 |
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') |