summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-09-14 14:43:44 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2010-09-14 14:43:44 (GMT)
commita468adc76d7e946b073579b783b246eb5e53850e (patch)
tree115cf23843f4e19f52aa8b611ed42817571649a3 /Misc
parent9bfc0f098474c841a40d27b9aa0be2fd085a6a53 (diff)
downloadcpython-a468adc76d7e946b073579b783b246eb5e53850e.zip
cpython-a468adc76d7e946b073579b783b246eb5e53850e.tar.gz
cpython-a468adc76d7e946b073579b783b246eb5e53850e.tar.bz2
Issue #9853: Fix the signature of SSLSocket.recvfrom() and
SSLSocket.sendto() to match the corresponding socket methods.
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 e30f97c..c6ae1ce 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -52,6 +52,9 @@ Core and Builtins
Library
-------
+- Issue #9853: Fix the signature of SSLSocket.recvfrom() and
+ SSLSocket.sendto() to match the corresponding socket methods.
+
- Issue 9840: Added a decorator to reprlib for wrapping __repr__ methods
to make them handle recursive calls within the same thread.