summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2017-07-04 14:46:10 (GMT)
committerGitHub <noreply@github.com>2017-07-04 14:46:10 (GMT)
commit580cd5cd3603317d294a881628880a92ea221334 (patch)
treef5241a9a2d9def1c023232a35f0b5d90b7b8600b /Misc/NEWS.d
parent23e2c3d193eafa8d16d895a2e59b6f6571e50cd3 (diff)
downloadcpython-580cd5cd3603317d294a881628880a92ea221334.zip
cpython-580cd5cd3603317d294a881628880a92ea221334.tar.gz
cpython-580cd5cd3603317d294a881628880a92ea221334.tar.bz2
bpo-30319: socket.close() now ignores ECONNRESET (#2565) (#2566)
socket.close() was modified in Python 3.6 to raise OSError on failure: see bpo-26685. (cherry picked from commit 67e1478dba6efe60b8e1890192014b8b06dd6bd9)
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/Library/2017-07-04-13-48-21.bpo-30319.hg_3TX.rst1
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.