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 pitrou
Recipients belopolsky, loewis, orsenthil, pitrou
Date 2010-06-10.20:44:09
SpamBayes Score 0.03762946
Marked as misclassified No
Message-id <1276202652.21.0.90181455378.issue8963@psf.upfronthosting.co.za>
In-reply-to
Content
In setipaddr() in socketmodule.c, the following line appears to change the current locale when DNS lookup fails:

    error = getaddrinfo(name, NULL, &hints, &res);

This is checked by making a call to setlocale(LC_TIME, NULL) before and after the aforementioned line.

This is with the following libc:
$ rpm -qv glibc
glibc-2.11.1-8mnb2
History
Date User Action Args
2010-06-10 20:44:12pitrousetrecipients: + pitrou, loewis, belopolsky, orsenthil
2010-06-10 20:44:12pitrousetmessageid: <1276202652.21.0.90181455378.issue8963@psf.upfronthosting.co.za>
2010-06-10 20:44:10pitroulinkissue8963 messages
2010-06-10 20:44:09pitroucreate