summaryrefslogtreecommitdiff
path: root/Lib/imaplib.py
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-11-09 23:12:32 +0000
committerAntoine Pitrou <solipsis@pitrou.net>2010-11-09 23:12:32 +0000
commit5466e920d9f1df9d0ef5cae6b11ec7250fbbdd1e (patch)
tree4360eb97514770fcf15bc23803d8aa50603e4b10 /Lib/imaplib.py
parent7ec819e3a9887ac7bfe857ed6b6fb9018dee40c2 (diff)
downloadcpython-git-5466e920d9f1df9d0ef5cae6b11ec7250fbbdd1e.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/imaplib.py')
-rw-r--r--Lib/imaplib.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/imaplib.py b/Lib/imaplib.py
index 1b375465af..e020747e6c 100644
--- a/Lib/imaplib.py
+++ b/Lib/imaplib.py
@@ -260,6 +260,7 @@ class IMAP4:
def shutdown(self):
"""Close I/O established in "open"."""
self.file.close()
+ self.sock.shutdown(socket.SHUT_RDWR)
self.sock.close()