summaryrefslogtreecommitdiff
path: root/Lib/SocketServer.py
Commit message (Expand)AuthorAgeFilesLines
* bpo-35017, socketserver: don't accept request after shutdown (GH-9952) (GH-10...Denis Ledoux2018-10-261-0/+3
* Issue #26778: Fixed "a/an/and" typos in code comment and documentation.Serhiy Storchaka2016-04-171-1/+1
* Issue #5824: Fix DatagramRequestHandler tests by binding the client socketMartin Panter2016-02-241-8/+0
* Issue #26309: Shut down SocketServer request if verify_request() is falseMartin Panter2016-02-181-0/+2
* Issues #26310, #26311: Fix typos in the documentationMartin Panter2016-02-101-1/+1
* Issue #22435: Fix a file descriptor leak when SocketServer bind fails.Charles-François Natali2014-10-131-2/+6
* Issue #21491: SocketServer: Fix a race condition in child processes reaping.Charles-François Natali2014-06-201-28/+30
* Issue #14574: Ignore socket errors raised when flushing a connection on close.Kristján Valur Jónsson2012-12-251-1/+6
* Fix the patch for issue #7978: select() raises select.error before 3.3, not O...Antoine Pitrou2012-04-091-2/+2
* Issue #7978: socketserver now restarts the select() call when EINTR is returned.Antoine Pitrou2012-04-091-2/+13
* Issue #13140: Fix the daemon_threads attribute of ThreadingMixIn.Florent Xicluna2011-11-041-2/+1
* #13289: fix typo.Ezio Melotti2011-10-291-1/+1
* #11515: fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-151-1/+1
* Issue #2302: Fix a race condition in SocketServer.BaseServer.shutdown,Antoine Pitrou2010-04-251-12/+14
* http://bugs.python.org/issue6382Kristján Valur Jónsson2009-07-071-9/+23
* http://bugs.python.org/issue6382Kristján Valur Jónsson2009-07-051-1/+3
* http://bugs.python.org/issue6381Kristján Valur Jónsson2009-07-031-1/+6
* http://bugs.python.org/issue6267Kristján Valur Jónsson2009-06-281-3/+8
* http://bugs.python.org/issue6192Kristján Valur Jónsson2009-06-241-7/+8
* http://bugs.python.org/issue6192Kristján Valur Jónsson2009-06-071-1/+7
* Fix call to os.waitpid, it does not take keyword args.Neil Schemenauer2009-02-241-1/+1
* socketserver renaming reversal part 3: move the module into the rightGeorg Brandl2008-05-241-0/+681
* Renamed SocketServer to 'socketserver'.Alexandre Vassalotti2008-05-121-681/+0
* Progress on issue #1193577 by adding a polling .shutdown() method toJeffrey Yasskin2008-03-071-27/+66
* Prevent SocketServer.ForkingMixIn from waiting on child processes that itJeffrey Yasskin2008-02-281-9/+21
* Add diagnostic message to help figure-out why SocketServer tests occasionally...Raymond Hettinger2008-02-141-1/+5
* Patch #742598 from Michael Pomraning: add .timeout attribute to SocketServer ...Andrew M. Kuchling2008-01-191-4/+41
* Whitespace normalization.Tim Peters2007-03-121-2/+2
* Patch #1599845: Add an option to disable the implicit calls to server_bind() ...Collin Winter2007-03-101-4/+5
* Bug #1531963: Make SocketServer.TCPServer's server_address always be equal to...Collin Winter2007-03-101-0/+1
* bug [ 957505 ] SocketServer module documentation misleadingGeorg Brandl2005-07-181-2/+2
* Fixed a typo in docstring I happened upon.Guido van Rossum2005-04-301-1/+1
* Use cStringIO where available.Raymond Hettinger2004-12-311-3/+6
* TCPServer: Fixed typo in class docstring.Barry Warsaw2003-10-091-1/+1
* TCPServer: Fixed typo in class docstring.Barry Warsaw2003-10-091-1/+1
* Clearing out old patch queue. Patch #558547, make SocketServer moreAnthony Baxter2003-01-021-1/+2
* Use False instead of 0.Fred Drake2002-11-221-1/+1
* Patch #550765: Add daemon_threads flag.Martin v. Löwis2002-11-221-1/+8
* Replace 0 with False to match working in documentation. SF 599681.Raymond Hettinger2002-08-251-2/+2
* SF bug #543318 (Frank J. Tobin).Guido van Rossum2002-04-151-1/+1
* Convert a pile of obvious "yes/no" functions to return bool.Tim Peters2002-04-041-2/+2
* Apply the first chunk of the second patch from SF bug #471720:Guido van Rossum2001-10-231-3/+11
* SF bug #471720: ThreadingMixIn/TCPServer forgets closeGuido van Rossum2001-10-181-1/+6
* remove empty __del__ method from BaseRequestHandler to avoid cyclic garbageSkip Montanaro2001-10-031-3/+0
* Patch #401196: Use getaddrinfo and AF_INET6 in TCP servers and clients.Martin v. Löwis2001-07-241-1/+1
* IMPORTANT FIX: This should definitely go into the 2.1.1 release!!!Guido van Rossum2001-07-101-6/+15
* Add a close_request method to the BaseServer so that the TCPServer classKa-Ping Yee2001-04-111-0/+14
* added __all__ lists to a number of Python modulesSkip Montanaro2001-01-201-0/+7
* Bump __version__; add authorship note for the BaseServer patch.Guido van Rossum2001-01-191-1/+2
* SF Patch #102980, by Luke Kenneth Casson Leighton: BaseServer classGuido van Rossum2001-01-191-51/+139