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
Recipients ariel, ariel-wikimedia, r.david.murray
Date 2014-01-28.18:32:13
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1390933933.96.0.855307368401.issue20418@psf.upfronthosting.co.za>
In-reply-to
Content
Yes, I had checked that just in case; getaddrinfo(3) works for the all-digit hostname, returning no error.  I'm using these hints:

   memset(&hints, 0, sizeof(struct addrinfo));
   hints.ai_family = AF_UNSPEC;
   hints.ai_socktype = SOCK_STREAM;
   hints.ai_flags = AI_PASSIVE;
   hints.ai_protocol = 0;
   hints.ai_canonname = NULL;
   hints.ai_addr = NULL;
   hints.ai_next = NULL;

Tested on glibc-2.18.
History
Date User Action Args
2014-01-28 18:32:13arielsetrecipients: + ariel, r.david.murray, ariel-wikimedia
2014-01-28 18:32:13arielsetmessageid: <1390933933.96.0.855307368401.issue20418@psf.upfronthosting.co.za>
2014-01-28 18:32:13ariellinkissue20418 messages
2014-01-28 18:32:13arielcreate