diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2017-05-15 15:33:45 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-15 15:33:45 (GMT) |
commit | 83a2c2879839da2e10037f5e4af1bd1dafbf1a52 (patch) | |
tree | ef24c8005deb9f83be79420446dbbd779af4a68f /Misc/NEWS | |
parent | edef358ed6d05f927bf1636cc5a920a9d868b131 (diff) | |
download | cpython-83a2c2879839da2e10037f5e4af1bd1dafbf1a52.zip cpython-83a2c2879839da2e10037f5e4af1bd1dafbf1a52.tar.gz cpython-83a2c2879839da2e10037f5e4af1bd1dafbf1a52.tar.bz2 |
bpo-30329: Catch Windows error 10022 on shutdown() (#1538)
Catch the Windows socket WSAEINVAL error (code 10022) in imaplib and
poplib on shutdown(SHUT_RDWR): An invalid operation was attempted
This error occurs sometimes on SSL connections.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -323,6 +323,10 @@ Extension Modules Library ------- +- bpo-30329: imaplib and poplib now catch the Windows socket WSAEINVAL error + (code 10022) on shutdown(SHUT_RDWR): An invalid operation was attempted. + This error occurs sometimes on SSL connections. + - bpo-29196: Removed previously deprecated in Python 2.4 classes Plist, Dict and _InternalDict in the plistlib module. Dict values in the result of functions readPlist() and readPlistFromBytes() are now normal dicts. You |