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.

classification
Title: python 2.6 latest fails test_socketserver.py
Type: Stage:
Components: None Versions:
process
Status: closed Resolution: works for me
Dependencies: Superseder:
Assigned To: Nosy List: alanmcintyre, christian.heimes, dfavor
Priority: normal Keywords:

Created on 2007-06-06 15:41 by dfavor, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (4)
msg32223 - (view) Author: David Favor (dfavor) Date: 2007-06-06 15:41
test_socket_ssl
test_socketserver
test test_socketserver crashed -- <class 'socket.error'>: (104, 'Connection reset by peer')
test_softspace
test_sort
Exception in thread Thread-63:
Traceback (most recent call last):
  File "/build/work/python-2.6/Lib/threading.py", line 465, in __bootstrap
    self.run()
  File "/build/work/python-2.6/Lib/test/test_socketserver.py", line 93, in run
    svr.serve_a_few()
  File "/build/work/python-2.6/Lib/test/test_socketserver.py", line 35, in serve_a_few
    self.handle_request()
  File "/build/work/python-2.6/Lib/SocketServer.py", line 224, in handle_request
    self.handle_error(request, client_address)
  File "/build/work/python-2.6/Lib/SocketServer.py", line 222, in handle_request
    self.process_request(request, client_address)
  File "/build/work/python-2.6/Lib/SocketServer.py", line 429, in process_request
    self.collect_children()
  File "/build/work/python-2.6/Lib/SocketServer.py", line 425, in collect_children
    self.active_children.remove(pid)
ValueError: list.remove(x): x not in list 
msg32224 - (view) Author: Alan McIntyre (alanmcintyre) * (Python committer) Date: 2007-06-26 17:47
Could you provide some details of the environment in which this failed (platform, command used to run the tests, etc.)?  
msg32225 - (view) Author: David Favor (dfavor) Date: 2007-06-26 21:53
This was run on latest Fedora FC6 with all latest patches.
msg57781 - (view) Author: Christian Heimes (christian.heimes) * (Python committer) Date: 2007-11-23 09:24
I'm closing the bug report because it's pretty old and I haven't seen a
problem with the test in the past. Please open another bug if the
problem still persists.
History
Date User Action Args
2022-04-11 14:56:24adminsetgithub: 45045
2007-11-23 09:24:02christian.heimessetstatus: open -> closed
resolution: works for me
messages: + msg57781
nosy: + christian.heimes
2007-06-06 15:41:33dfavorcreate