summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2013-07-20 17:35:16 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2013-07-20 17:35:16 (GMT)
commit60a26e05162c5b6d3d67fa53bb2057b017f932b1 (patch)
tree76952e87739d7bb479f1302a02c9040ef22c474b /Misc
parent60d634ae4a89854b4e7468445eeafa556a7979c9 (diff)
downloadcpython-60a26e05162c5b6d3d67fa53bb2057b017f932b1.zip
cpython-60a26e05162c5b6d3d67fa53bb2057b017f932b1.tar.gz
cpython-60a26e05162c5b6d3d67fa53bb2057b017f932b1.tar.bz2
Issue #9177: Calling read() or write() now raises ValueError, not AttributeError, on a closed SSL socket.
Patch by Senko Rasic.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS3
2 files changed, 4 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index ebda56f..43da4af 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -1021,6 +1021,7 @@ Jérôme Radix
Burton Radons
Jeff Ramnani
Brodie Rao
+Senko Rasic
Antti Rasinen
Sridhar Ratnakumar
Ysj Ray
diff --git a/Misc/NEWS b/Misc/NEWS
index f24fc91..5b83f8a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -159,6 +159,9 @@ Core and Builtins
Library
-------
+- Issue #9177: Calling read() or write() now raises ValueError, not
+ AttributeError, on a closed SSL socket. Patch by Senko Rasic.
+
- Issue #18513: Fix behaviour of cmath.rect w.r.t. signed zeros on OS X 10.8 +
gcc.