diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2017-07-04 14:20:06 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-04 14:20:06 (GMT) |
commit | 67e1478dba6efe60b8e1890192014b8b06dd6bd9 (patch) | |
tree | d40e51acd43996f22a3dbbe31e9aa71036d342c1 /Misc/NEWS.d | |
parent | 378ebb6578b9d709f38b888d23874c0b18125249 (diff) | |
download | cpython-67e1478dba6efe60b8e1890192014b8b06dd6bd9.zip cpython-67e1478dba6efe60b8e1890192014b8b06dd6bd9.tar.gz cpython-67e1478dba6efe60b8e1890192014b8b06dd6bd9.tar.bz2 |
bpo-30319: socket.close() now ignores ECONNRESET (#2565)
socket.close() was modified in Python 3.6 to raise OSError on
failure: see bpo-26685.
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Library/2017-07-04-13-48-21.bpo-30319.hg_3TX.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2017-07-04-13-48-21.bpo-30319.hg_3TX.rst b/Misc/NEWS.d/next/Library/2017-07-04-13-48-21.bpo-30319.hg_3TX.rst new file mode 100644 index 0000000..1112d2f --- /dev/null +++ b/Misc/NEWS.d/next/Library/2017-07-04-13-48-21.bpo-30319.hg_3TX.rst @@ -0,0 +1 @@ +socket.close() now ignores ECONNRESET error. |