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 kristjan.jonsson
Recipients ezio.melotti, kristjan.jonsson, pitrou
Date 2009-07-21.08:44:52
SpamBayes Score 0.00022826178
Marked as misclassified No
Message-id <1248165894.09.0.751169304707.issue6499@psf.upfronthosting.co.za>
In-reply-to
Content
I found one problem in test_docxmlrpc.py, a missing "import socket" at 
the top (for the socket.timeout exception handler).
Please add that, and see what happens.

But there seems to be a problem with the error handing in your build.  
probably, sys.stderr is messed up somehow.  You could try putting a 
breakpoint in line 444 of threadmodule.c and get to the bottom of it.

But to short circuit that,  
try adding an "import sys" and then in the finally clause (around line 
54) add "sys.stderr = sys.__stderr__" and see if you get better error 
output.
History
Date User Action Args
2009-07-21 08:44:54kristjan.jonssonsetrecipients: + kristjan.jonsson, pitrou, ezio.melotti
2009-07-21 08:44:54kristjan.jonssonsetmessageid: <1248165894.09.0.751169304707.issue6499@psf.upfronthosting.co.za>
2009-07-21 08:44:52kristjan.jonssonlinkissue6499 messages
2009-07-21 08:44:52kristjan.jonssoncreate