diff options
author | Gregory P. Smith <greg@mad-scientist.com> | 2009-02-11 23:45:25 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@mad-scientist.com> | 2009-02-11 23:45:25 (GMT) |
commit | 3605b5cee3ae86e014c015242dd82e2f46ba5c5f (patch) | |
tree | ab8c02a90076fb304150d1b9b08752c477f5521e /Lib | |
parent | bcd3ea86a39b80b1a3614f4a06a42c0ec7519f0a (diff) | |
download | cpython-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 'Lib')
-rw-r--r-- | Lib/test/test_socket.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Lib/test/test_socket.py b/Lib/test/test_socket.py index 66664b4..5c906d7 100644 --- a/Lib/test/test_socket.py +++ b/Lib/test/test_socket.py @@ -388,6 +388,14 @@ class GeneralModuleTests(unittest.TestCase): # Check that setting it to an invalid type raises TypeError self.assertRaises(TypeError, socket.setdefaulttimeout, "spam") + def testIPv4_inet_aton_fourbytes(self): + if not hasattr(socket, 'inet_aton'): + return # No inet_aton, nothing to check + # Test that issue1008086 and issue767150 are fixed. + # It must return 4 bytes. + self.assertEquals('\x00'*4, socket.inet_aton('0.0.0.0')) + self.assertEquals('\xff'*4, socket.inet_aton('255.255.255.255')) + def testIPv4toString(self): if not hasattr(socket, 'inet_pton'): return # No inet_pton() on this platform |