summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGregory P. Smith <greg@mad-scientist.com>2009-02-11 23:45:25 (GMT)
committerGregory P. Smith <greg@mad-scientist.com>2009-02-11 23:45:25 (GMT)
commit3605b5cee3ae86e014c015242dd82e2f46ba5c5f (patch)
treeab8c02a90076fb304150d1b9b08752c477f5521e /Misc
parentbcd3ea86a39b80b1a3614f4a06a42c0ec7519f0a (diff)
downloadcpython-3605b5cee3ae86e014c015242dd82e2f46ba5c5f.zip
cpython-3605b5cee3ae86e014c015242dd82e2f46ba5c5f.tar.gz
cpython-3605b5cee3ae86e014c015242dd82e2f46ba5c5f.tar.bz2
Issue #1008086: Fixes socket.inet_aton() to always return 4 bytes even
on LP64 platforms (most 64-bit Linux, bsd, unix systems).
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 a8b5a3c..530a55d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -152,6 +152,9 @@ Core and Builtins
Library
-------
+- Issue #1008086: Fixed socket.inet_aton() to always return 4 bytes even on
+ LP64 platforms (most 64-bit Linux, bsd, unix systems).
+
- Issue #5203: Fixed ctypes segfaults when passing a unicode string to a
function without argtypes (only occurs if HAVE_USABLE_WCHAR_T is false).