summaryrefslogtreecommitdiff
path: root/Lib/SocketServer.py
Commit message (Expand)AuthorAgeFilesLines
* 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
* Changing allow_reuse_address's default value, and documenting it.Moshe Zadka2000-12-131-1/+1
* In class StreamRequestHandler, make the default buffering for rfileGuido van Rossum2000-09-011-2/+12
* Add class variable allow_reuse_address in TCPServer -- if nonzero, theGuido van Rossum2000-05-091-0/+5
* update to use threading module instead of thread.Jeremy Hylton1999-10-121-4/+4
* Another patch from Andy Dustman:Guido van Rossum1999-07-281-1/+8
* In collect_children(), put a try-except around os.waitpid() because itGuido van Rossum1999-06-171-1/+4
* Laurence Tratt notes that the accept() call in get_request() can fail,Guido van Rossum1999-06-151-1/+4
* Andy Dustman notes that I patched the close() call in the wrong place.Guido van Rossum1999-06-011-1/+1
* Andy Dustman writes:Guido van Rossum1999-05-211-0/+1
* Patch by Jeff Bauer: a minor change to declare two newGuido van Rossum1998-11-301-12/+11
* Fix typo in docstring: client_request should be client_address.Guido van Rossum1998-11-161-1/+1
* Fixed the UDP server -- this never worked. Ray Loyzaga deservesGuido van Rossum1998-06-161-2/+7
* Explicitly close rfile and wfile in StreamRequestHandler.finish() --Guido van Rossum1998-04-031-0/+2
* Mass check-in after untabifying all files that need it.Guido van Rossum1998-03-261-128/+128
* No longer need to be very careful with saving the exception stateGuido van Rossum1997-09-291-2/+1
* Fix bug found by kjpylint; change doc string to avoid "(" in column 1.Guido van Rossum1997-07-161-5/+5
* Make self.rfile unbuffered (self.wfile already is). This should fixGuido van Rossum1996-10-231-1/+1
* Changed makefile() args from r/w to rb/wb, for non-unix compatability.Jack Jansen1996-02-141-2/+2
* correct retrieving return value of os.waitpid()Guido van Rossum1996-01-251-1/+1
* Initial revisionGuido van Rossum1995-08-041-0/+413