summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-08-28 20:42:55 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2010-08-28 20:42:55 (GMT)
commit67c7ce4bef3223af744d2b510d294000ce00388d (patch)
treed94599db1db51bb5aa9f1daaaa338ef7199a4715 /Misc
parent1a9a9d543327397396827642895410183f8902d5 (diff)
downloadcpython-67c7ce4bef3223af744d2b510d294000ce00388d.zip
cpython-67c7ce4bef3223af744d2b510d294000ce00388d.tar.gz
cpython-67c7ce4bef3223af744d2b510d294000ce00388d.tar.bz2
Issue #4835: make PyLong_FromSocket_t() and PyLong_AsSocket_t() private
to the socket module, and fix the width of socket descriptors to be correctly detected under 64-bit Windows.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index ec51545..46d6fdd 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -74,6 +74,10 @@ Core and Builtins
Extensions
----------
+- Issue #4835: make PyLong_FromSocket_t() and PyLong_AsSocket_t() private
+ to the socket module, and fix the width of socket descriptors to be
+ correctly detected under 64-bit Windows.
+
- Issue #1027206: Support IDNA in gethostbyname, gethostbyname_ex,
getaddrinfo and gethostbyaddr. getnameinfo is now restricted to numeric
addresses as input.