This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author ariel-wikimedia
Recipients ariel-wikimedia
Date 2014-01-28.12:43:06
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1390912986.46.0.278419787469.issue20418@psf.upfronthosting.co.za>
In-reply-to
Content
With python 2.7.5 (running on fedora 20 with all updates), socket.getaddrinfo for a hostname such as 836937931829 will fail.  Docker produces these sorts of hostnames (really random hex strings, but some hex strings only contain digits 0-9).

How to reproduce:

Add the lines

172.17.10.53    blobber
172.17.10.54    836937931829

to /etc/hosts

run the following:

import socket
print socket.getaddrinfo('172.17.10.53',80,socket.AF_INET,0,socket.SOL_TCP)
print socket.getaddrinfo('blobber',80,socket.AF_INET,0,socket.SOL_TCP)
print socket.getaddrinfo('172.17.10.54',80,socket.AF_INET,0,socket.SOL_TCP)
print socket.getaddrinfo('836937931829',80,socket.AF_INET,0,socket.SOL_TCP)

Expected output:
[(2, 1, 6, '', ('172.17.10.53', 80))]
[(2, 1, 6, '', ('172.17.10.53', 80))]
[(2, 1, 6, '', ('172.17.10.54', 80))]
[(2, 1, 6, '', ('172.17.10.54', 80))]

Actual output:
[(2, 1, 6, '', ('172.17.10.53', 80))]
[(2, 1, 6, '', ('172.17.10.53', 80))]
[(2, 1, 6, '', ('172.17.10.54', 80))]
Traceback (most recent call last):
  File "./test-getaddrinfo.py", line 6, in <module>
    print socket.getaddrinfo('836937931829',80,socket.AF_INET,0,socket.SOL_TCP)
socket.gaierror: [Errno -2] Name or service not known
History
Date User Action Args
2014-01-28 12:43:06ariel-wikimediasetrecipients: + ariel-wikimedia
2014-01-28 12:43:06ariel-wikimediasetmessageid: <1390912986.46.0.278419787469.issue20418@psf.upfronthosting.co.za>
2014-01-28 12:43:06ariel-wikimedialinkissue20418 messages
2014-01-28 12:43:06ariel-wikimediacreate