1. 3604b23 bpo-31479: Always reset the signal alarm in tests (GH-3588) (GH-7314) by Victor Stinner · 7 years ago
  2. b4920d5 bpo-31593: test_socketserver waits child processes (#3786) by Victor Stinner · 8 years ago
  3. 098f6d0 Issue #5824: Fix DatagramRequestHandler tests by binding the client socket by Martin Panter · 9 years ago
  4. 63d1f47 Issue #26309: Rewrite test in main thread and avoid race condition by Martin Panter · 9 years ago
  5. ba8474b Issue #26309: Shut down SocketServer request if verify_request() is false by Martin Panter · 9 years ago
  6. 2f2c829 Issue #23254: Document how to close the TCPServer listening socket. by Robert Collins · 10 years ago
  7. 977c424 Issue #22435: Fix a file descriptor leak when SocketServer bind fails. by Charles-François Natali · 11 years ago
  8. 32e23e7 Issue #18702: All skipped tests now reported as skipped. by Serhiy Storchaka · 12 years ago
  9. 4bb142b Issue #16714: use 'raise' exceptions, don't 'throw'. by Andrew Svetlov · 13 years ago
  10. b5588c3 Fix the patch for issue #7978: select() raises select.error before 3.3, not OSError. by Antoine Pitrou · 13 years ago
  11. 467a5c4 Fix flakiness in test_socketserver by Antoine Pitrou · 13 years ago
  12. fa1d841 Issue #7978: socketserver now restarts the select() call when EINTR is returned. by Antoine Pitrou · 13 years ago
  13. 5f761d7 Issue #13140: Fix the daemon_threads attribute of ThreadingMixIn. by Florent Xicluna · 14 years ago
  14. b30ac94 Issue #12250: test_socketserver uses a timeout of 60 seconds instead of 20 by Victor Stinner · 14 years ago
  15. 2623a37 Merged revisions 86596 via svnmerge from by Ezio Melotti · 15 years ago
  16. 708c072 Issue #7449: Skip test_socketserver if threading support is disabled by Victor Stinner · 15 years ago
  17. 6a10281 Issue #7449, last part (11): fix many tests if thread support is disabled by Victor Stinner · 15 years ago
  18. a624040 Issue #2302: Fix a race condition in SocketServer.BaseServer.shutdown, by Antoine Pitrou · 15 years ago
  19. a4f46e1 Remove unused imports in test modules. by Georg Brandl · 15 years ago
  20. 8aea050 Reduce the probability of refleaks in test_socketserver. by Antoine Pitrou · 16 years ago
  21. bec087f fix incorrect auto-translation of TestSkipped -> unittest.SkipTest by Benjamin Peterson · 16 years ago
  22. 888a39b remove test_support.TestSkipped and just use unittest.SkipTest by Benjamin Peterson · 16 years ago
  23. a9b2222 change a few uses of the threading APIs by Benjamin Peterson · 17 years ago
  24. 0fbcf69 give the threading API PEP 8 names by Benjamin Peterson · 17 years ago
  25. e152a77 socketserver renaming reversal part 3: move the module into the right by Georg Brandl · 17 years ago
  26. d192c92 Updated all import statements to use the new socketserver module name. by Alexandre Vassalotti · 17 years ago
  27. e41b006 - Issue #2550: The approach used by client/server code for obtaining ports by Trent Nelson · 17 years ago
  28. acdb6fb Try to prevent the alarm going off early in tearDown by Neal Norwitz · 17 years ago
  29. 00b53ea Revert r61650; the intent of this commit was to try and address alarm failures on some of the build slaves. As Neal points out, it's called after test_main(), so it's not going to factor into the test when run via regrtest.py (and removes the original functionality that Jeffrey wanted that would kill the test if it took longer than 3 seconds to run when executing it directly during development). by Trent Nelson · 17 years ago
  30. a0ce6b6 Bump the SIGALM delay from 3 seconds to 20 seconds, mainly in an effort to see if it fixes the alarm failures in this test experienced by some of the buildbots. by Trent Nelson · 17 years ago
  31. e75f59a Progress on issue #1193577 by adding a polling .shutdown() method to by Jeffrey Yasskin · 17 years ago
  32. f28896d Fix test_socketserver on Windows after r61099 added several signal.alarm() by Jeffrey Yasskin · 17 years ago
  33. 392c159 Prevent SocketServer.ForkingMixIn from waiting on child processes that it by Jeffrey Yasskin · 17 years ago
  34. 180997b Speed test_socketserver up from 28.739s to 0.226s, simplify the logic, and make by Jeffrey Yasskin · 17 years ago
  35. c5f05e4 Patch #2167 from calvin: Remove unused imports by Christian Heimes · 17 years ago
  36. 72a6576 Let test_socketserver pass on win32, which does not have AF_UNIX sockets. by Amaury Forgeot d'Arc · 18 years ago
  37. 461ed87 Wait for a delay before reaping children -- this should fix the by Georg Brandl · 18 years ago
  38. 61fdd71 Rewrite test_socketserver as unittest, written for GHOP by Benjamin Petersen. by Georg Brandl · 18 years ago
  39. 482043a Reap children before the test starts so hopefully SocketServer by Neal Norwitz · 18 years ago
  40. b1bb01e Fix a race condition in this test -- instead of assuming that it will take by Guido van Rossum · 18 years ago
  41. 3351aa7 Convert an assert to a raise so it works even in the presence of -O. by Collin Winter · 18 years ago
  42. 22c42ba Bug #1531963: Make SocketServer.TCPServer's server_address always be equal to calling getsockname() on the server's socket. by Collin Winter · 18 years ago
  43. b476fdf Fix the test for SocketServer so it should pass on cygwin and not fail by Neal Norwitz · 19 years ago
  44. b15ac31 Add new utility function, reap_children(), to test_support. This should by Neal Norwitz · 19 years ago
  45. 909eb12 Fix the socket tests so they can be run concurrently. Backport candidate by Neal Norwitz · 19 years ago
  46. daedf21 Fixes for AF_UNIX support on OS/2: by Andrew MacIntyre · 21 years ago
  47. 70a6b49 Replace backticks with repr() or "%r" by Walter Dörwald · 21 years ago
  48. c6fff89 EMX fork() emulation not good enough to cope with test_socketserver by Andrew MacIntyre · 23 years ago
  49. 04f357c Get rid of relative imports in all unittests. Now anything that by Barry Warsaw · 23 years ago
  50. 9bd1401 Use sendall() in the stream test instead of send(). by Guido van Rossum · 24 years ago
  51. a86f0c1 Make test_socketserver require the network resource. by Tim Peters · 24 years ago
  52. a9f6f22 Rework akin to test_threaded_import, so that this can run under regrtest. by Tim Peters · 24 years ago
  53. 0960015 Should raise TestSkipped, not ImportError, when deciding to skip the test. by Guido van Rossum · 24 years ago
  54. 05be1a0 Ported to Windows: by Guido van Rossum · 24 years ago
  55. 39f1b36 A test suite for SocketServer.py that exposes the various bugs just by Guido van Rossum · 24 years ago