1. a624040 Issue #2302: Fix a race condition in SocketServer.BaseServer.shutdown, by Antoine Pitrou · 15 years ago
  2. c71fae5 http://bugs.python.org/issue6382 by Kristján Valur Jónsson · 16 years ago
  3. f5b8ea9 http://bugs.python.org/issue6382 by Kristján Valur Jónsson · 16 years ago
  4. b5faac7 http://bugs.python.org/issue6381 by Kristján Valur Jónsson · 16 years ago
  5. e007860 http://bugs.python.org/issue6267 Cumulative patch to http and xmlrpc by Kristján Valur Jónsson · 16 years ago
  6. f1d11ef http://bugs.python.org/issue6192 by Kristján Valur Jónsson · 16 years ago
  7. afefcfd http://bugs.python.org/issue6192 by Kristján Valur Jónsson · 16 years ago
  8. c9332fa Fix call to os.waitpid, it does not take keyword args. by Neil Schemenauer · 16 years ago
  9. e152a77 socketserver renaming reversal part 3: move the module into the right by Georg Brandl · 17 years ago[Renamed from Lib/lib-old/SocketServer.py]
  10. b897c9a socketserver renaming reversal part 2: move rename module. by Georg Brandl · 17 years ago[Renamed from Lib/socketserver.py]
  11. fb9ce65 Renamed SocketServer to 'socketserver'. Deprecated old name. by Alexandre Vassalotti · 17 years ago[Renamed from Lib/SocketServer.py]
  12. e75f59a Progress on issue #1193577 by adding a polling .shutdown() method to by Jeffrey Yasskin · 17 years ago
  13. 392c159 Prevent SocketServer.ForkingMixIn from waiting on child processes that it by Jeffrey Yasskin · 17 years ago
  14. 1b56324 Add diagnostic message to help figure-out why SocketServer tests occasionally crash by Raymond Hettinger · 17 years ago
  15. e45a77a Patch #742598 from Michael Pomraning: add .timeout attribute to SocketServer that will call by Andrew M. Kuchling · 17 years ago
  16. ea5962f Whitespace normalization. by Tim Peters · 18 years ago
  17. ae04106 Patch #1599845: Add an option to disable the implicit calls to server_bind() and server_activate() in the constructors for TCPServer, SimpleXMLRPCServer and DocXMLRPCServer. by Collin Winter · 18 years ago
  18. 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
  19. ca5feab bug [ 957505 ] SocketServer module documentation misleading by Georg Brandl · 20 years ago
  20. ebbffd4 Fixed a typo in docstring I happened upon. by Guido van Rossum · 20 years ago
  21. a617271 Use cStringIO where available. by Raymond Hettinger · 20 years ago
  22. b97f0b7 TCPServer: Fixed typo in class docstring. by Barry Warsaw · 22 years ago
  23. 3aaad50 TCPServer: Fixed typo in class docstring. by Barry Warsaw · 22 years ago
  24. 4cedc1e Clearing out old patch queue. Patch #558547, make SocketServer more by Anthony Baxter · 22 years ago
  25. 132e0e8 Use False instead of 0. by Fred Drake · 22 years ago
  26. f86e8ef Patch #550765: Add daemon_threads flag. by Martin v. Löwis · 22 years ago
  27. c8f8034 Replace 0 with False to match working in documentation. SF 599681. by Raymond Hettinger · 23 years ago
  28. beae477 SF bug #543318 (Frank J. Tobin). by Guido van Rossum · 23 years ago
  29. bc0e910 Convert a pile of obvious "yes/no" functions to return bool. by Tim Peters · 23 years ago
  30. 83c3281 Apply the first chunk of the second patch from SF bug #471720: by Guido van Rossum · 24 years ago
  31. a5343cc SF bug #471720: ThreadingMixIn/TCPServer forgets close by Guido van Rossum · 24 years ago
  32. ae3b125 remove empty __del__ method from BaseRequestHandler to avoid cyclic garbage by Skip Montanaro · 24 years ago
  33. a43c2f8 Patch #401196: Use getaddrinfo and AF_INET6 in TCP servers and clients. by Martin v. Löwis · 24 years ago
  34. 7de4d64 IMPORTANT FIX: This should definitely go into the 2.1.1 release!!! by Guido van Rossum · 24 years ago
  35. 285a7e5 Add a close_request method to the BaseServer so that the TCPServer class by Ka-Ping Yee · 24 years ago
  36. e99d5ea added __all__ lists to a number of Python modules by Skip Montanaro · 24 years ago
  37. 10b0418 Bump __version__; add authorship note for the BaseServer patch. by Guido van Rossum · 24 years ago
  38. 90cb906 SF Patch #102980, by Luke Kenneth Casson Leighton: BaseServer class by Guido van Rossum · 24 years ago
  39. dd80220 Changing allow_reuse_address's default value, and documenting it. by Moshe Zadka · 24 years ago
  40. 01fed4d In class StreamRequestHandler, make the default buffering for rfile by Guido van Rossum · 25 years ago
  41. e3c7a5f Add class variable allow_reuse_address in TCPServer -- if nonzero, the by Guido van Rossum · 25 years ago
  42. 7526027 update to use threading module instead of thread. by Jeremy Hylton · 26 years ago
  43. 2ab455a Another patch from Andy Dustman: by Guido van Rossum · 26 years ago
  44. bfadac0 In collect_children(), put a try-except around os.waitpid() because it by Guido van Rossum · 26 years ago
  45. f2f0594 Laurence Tratt notes that the accept() call in get_request() can fail, by Guido van Rossum · 26 years ago
  46. 198e7ca Andy Dustman notes that I patched the close() call in the wrong place. by Guido van Rossum · 26 years ago
  47. 1865960 Andy Dustman writes: by Guido van Rossum · 26 years ago
  48. 67a40e8 Patch by Jeff Bauer: a minor change to declare two new by Guido van Rossum · 26 years ago
  49. fdb3d1a Fix typo in docstring: client_request should be client_address. by Guido van Rossum · 26 years ago
  50. 3249082 Fixed the UDP server -- this never worked. Ray Loyzaga deserves by Guido van Rossum · 27 years ago
  51. 1d5102c Explicitly close rfile and wfile in StreamRequestHandler.finish() -- by Guido van Rossum · 27 years ago
  52. 45e2fbc Mass check-in after untabifying all files that need it. by Guido van Rossum · 27 years ago
  53. c90ad21 No longer need to be very careful with saving the exception state by Guido van Rossum · 28 years ago
  54. db2b70c Fix bug found by kjpylint; change doc string to avoid "(" in column 1. by Guido van Rossum · 28 years ago
  55. d804bab Make self.rfile unbuffered (self.wfile already is). This should fix by Guido van Rossum · 29 years ago
  56. 2bb57b8 Changed makefile() args from r/w to rb/wb, for non-unix compatability. by Jack Jansen · 29 years ago
  57. 5bb05da correct retrieving return value of os.waitpid() by Guido van Rossum · 29 years ago
  58. e7e578f Initial revision by Guido van Rossum · 30 years ago