Merged revisions 84347 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r84347 | antoine.pitrou | 2010-08-28 22:42:55 +0200 (sam., 28 août 2010) | 5 lines
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.
........
diff --git a/Misc/NEWS b/Misc/NEWS
index 5075c38..0ff6fa0 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -463,6 +463,10 @@
Extension Modules
-----------------
+- 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 #665761: ``functools.reduce()`` will no longer mask exceptions
other than ``TypeError`` raised by the iterator argument.