summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBrett Cannon <bcannon@gmail.com>2004-03-23 23:16:54 (GMT)
committerBrett Cannon <bcannon@gmail.com>2004-03-23 23:16:54 (GMT)
commit06c34798df6c99cf88ecab98bc7b7f78dfde3ff8 (patch)
treef459cb5821336b8d9dc26d0cbd4f3e8b7913e704 /Misc
parentfee6f33e08b8b67d260bcf753dceaeb4184baf52 (diff)
downloadcpython-06c34798df6c99cf88ecab98bc7b7f78dfde3ff8.zip
cpython-06c34798df6c99cf88ecab98bc7b7f78dfde3ff8.tar.gz
cpython-06c34798df6c99cf88ecab98bc7b7f78dfde3ff8.tar.bz2
Make socket.sslerror a subclass of socket.error .
Added socket.error to the socket module's C API.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index be6984b..afd8ea6 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -195,6 +195,9 @@ Core and builtins
Extension modules
-----------------
+- socket.sslerror is now a subclass of socket.error . Also added
+ socket.error to the socket module's C API.
+
- Bug #920575: A problem that _locale module segfaults on
nl_langinfo(ERA) caused by GNU libc's illegal NULL return is fixed.