[issue19044] getaddrinfo raises near-useless exception

2013-09-20 Thread Charles-François Natali
Charles-François Natali added the comment: Well, as Ned explained, that's a libc bug. If getaddrinfo() fails with EAI_SYSTEM, errno should be set. There's nothing more Python can do. If the error is reproducible, you can run the failing code with strace, to see what's going on (and check if the

[issue19044] getaddrinfo raises near-useless exception

2013-09-20 Thread Balazs
Balazs added the comment: Hi, this is the platform: Linux cloudbackupbr 3.8.0-30-generic #44-Ubuntu SMP Thu Aug 22 20:52:24 UTC 2013 x86_64 x86_64 x86_64 GNU/Linux /bin/bash: ELF 64-bit LSB executable, x86-64, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.6.24, Bui

[issue19044] getaddrinfo raises near-useless exception

2013-09-19 Thread Balazs
Changes by Balazs : -- nosy: +balazs ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/ma

[issue19044] getaddrinfo raises near-useless exception

2013-09-18 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +neologix ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyt

[issue19044] getaddrinfo raises near-useless exception

2013-09-18 Thread Ned Deily
Ned Deily added the comment: This looks like a platform bug. What platform was this running on? A web search turns up other reports of the system getaddrinfo() returning errno = 0 due to a glibc bug, for example, https://bugzilla.redhat.com/show_bug.cgi?id=958652. -- nosy: +ned.deily

[issue19044] getaddrinfo raises near-useless exception

2013-09-18 Thread Nikolaus Rath
New submission from Nikolaus Rath: I received a bugreport for a Python application that contains the following stacktrace: > File "/usr/lib/python3.3/http/client.py", line 1057, in endheaders > self._send_output(message_body) > File "/usr/lib/python3.3/http/client.py", line 902, in _sen