[issue6382] test_socketserver fails on trunk in test_ForkingTCPServer

2009-12-13 Thread R. David Murray
R. David Murray added the comment: NB: this issue was triggered by the issue 6267 patch. -- resolution: -> fixed stage: needs patch -> committed/rejected status: open -> closed type: -> behavior ___ Python tracker

[issue6382] test_socketserver fails on trunk in test_ForkingTCPServer

2009-07-07 Thread Kristján Valur Jónsson
Kristján Valur Jónsson added the comment: committed in revision 73877 and revision 73878 -- ___ Python tracker ___ ___ Python-bugs-lis

[issue6382] test_socketserver fails on trunk in test_ForkingTCPServer

2009-07-06 Thread R. David Murray
R. David Murray added the comment: I had to fix one line, but after that it runs successfully. Updated patch attached. The change is to add the 'request' argument to the close_request call on line 549. -- keywords: +patch Added file: http://bugs.python.org/file14465/issue6382.patch _

[issue6382] test_socketserver fails on trunk in test_ForkingTCPServer

2009-07-06 Thread Kristján Valur Jónsson
Kristján Valur Jónsson added the comment: I'm uploading a patched SocketServer.py. Could you please try it out on the gentoo box before I commit it? -- Added file: http://bugs.python.org/file14462/SocketServer.py ___ Python tracker

[issue6382] test_socketserver fails on trunk in test_ForkingTCPServer

2009-07-06 Thread Kristján Valur Jónsson
Kristján Valur Jónsson added the comment: How unfortunate. This means that we need to virtualize the shutdown. I'll submit a proposed patch. -- ___ Python tracker ___ _

[issue6382] test_socketserver fails on trunk in test_ForkingTCPServer

2009-07-06 Thread R. David Murray
R. David Murray added the comment: I now get a different error, followed by zsh detecting an alarm: rdmur...@partner:~/python/trunk>./python -m test.regrtest -uall test_socketserver Could not find '/home/rdmurray/python/trunk/Lib/test' in sys.path to remove it test_socketserver Exception in thr

[issue6382] test_socketserver fails on trunk in test_ForkingTCPServer

2009-07-05 Thread Kristján Valur Jónsson
Kristján Valur Jónsson added the comment: submitted revision 73863. Please test for me on gentoo. -- ___ Python tracker ___ ___ Pytho

[issue6382] test_socketserver fails on trunk in test_ForkingTCPServer

2009-07-04 Thread Kristján Valur Jónsson
Kristján Valur Jónsson added the comment: This is a "fork" problem. socket.close must be done on the parent, while socket.shutdown and socket.close must be performed on the child. I must restructure this a little bit to make it work. -- nosy: +krisvale

[issue6382] test_socketserver fails on trunk in test_ForkingTCPServer

2009-06-29 Thread R. David Murray
New submission from R. David Murray : Gentoo linux, trunk r73699. test_socketserver fails with the following tracebacks: == FAIL: test_ForkingTCPServer (test.test_socketserver.SocketServerTest) -