| Commit message (Expand) | Author | Age | Files | Lines |
* | Create http package. #2883. | Georg Brandl | 2008-05-26 | 1 | -601/+0 |
|
|
* | Merged revisions 63412,63445-63447,63449-63450,63452,63454,63459,63463,63465,... | Georg Brandl | 2008-05-25 | 1 | -1/+7 |
|
|
* | Renamed the SocketServer module to 'socketserver'. | Alexandre Vassalotti | 2008-05-12 | 1 | -4/+4 |
|
|
* | Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,... | Christian Heimes | 2008-02-23 | 1 | -4/+7 |
|
|
* | make sure to write bytes instead of strings to underlying socket channel | Bill Janssen | 2007-10-30 | 1 | -6/+6 |
|
|
* | Fixes by John Reese and Jacques Frechet that make test_xmlrpc pass. | Guido van Rossum | 2007-08-22 | 1 | -8/+15 |
|
|
* | Allow rfc822 to process headers from an incoming HTTP request. | Jeremy Hylton | 2007-08-10 | 1 | -1/+8 |
|
|
* | Treat HTTP status line as ISO-8859-1 as in httplib module. | Jeremy Hylton | 2007-08-03 | 1 | -1/+1 |
|
|
* | Fix most trivially-findable print statements. | Guido van Rossum | 2007-02-09 | 1 | -1/+1 |
|
|
* | Rip out 'long' and 'L'-suffixed integer literals. | Guido van Rossum | 2007-01-15 | 1 | -4/+4 |
|
|
* | Merged revisions 53304-53433,53435-53450 via svnmerge from | Thomas Wouters | 2007-01-15 | 1 | -2/+2 |
|
|
* | Typo fix | Andrew M. Kuchling | 2006-03-07 | 1 | -1/+1 |
|
|
* | Move "httpresponses" dict from urllib2 to httplib where it belongs. | Georg Brandl | 2006-02-17 | 1 | -10/+10 |
|
|
* | Patch #1417555: SimpleHTTPServer now returns Last-Modified headers. | Georg Brandl | 2006-02-17 | 1 | -3/+4 |
|
|
* | bug [ 1100201 ] Cross-site scripting on BaseHTTPServer | Georg Brandl | 2005-06-26 | 1 | -1/+4 |
|
|
* | Replace backticks with repr() or "%r" | Walter Dörwald | 2004-02-12 | 1 | -5/+5 |
|
|
* | SF patch #747364: BaseHTTPServer doesn't need StringIO intermediary | Raymond Hettinger | 2003-08-09 | 1 | -11/+1 |
|
|
* | Fix SF bug #747348 docstring mistake in BaseHTTPServer.py. \n\nBackport Candi... | Raymond Hettinger | 2003-06-02 | 1 | -1/+1 |
|
|
* | Patch #744041: Use only first two elements of address to support IPv6. | Martin v. Löwis | 2003-05-31 | 1 | -2/+2 |
|
|
* | Get rid of many apply() calls. | Guido van Rossum | 2003-02-27 | 1 | -1/+1 |
|
|
* | [Bug #676292] BaseHTTPServer incorrectly parses protocol; fix by Andrew Dalke | Andrew M. Kuchling | 2003-02-03 | 1 | -5/+16 |
|
|
* | Bug #676273: Rewrite paragraph in module docstring | Andrew M. Kuchling | 2003-02-03 | 1 | -5/+5 |
|
|
* | Use is None rather than general boolean | Raymond Hettinger | 2002-05-31 | 1 | -1/+1 |
|
|
* | Whitespace normalization. | Tim Peters | 2002-04-16 | 1 | -1/+1 |
|
|
* | Convert a pile of obvious "yes/no" functions to return bool. | Tim Peters | 2002-04-04 | 1 | -8/+8 |
|
|
* | Patch #430706: Persistent connections in BaseHTTPServer. | Martin v. Löwis | 2002-03-17 | 1 | -34/+123 |
|
|
* | add Content-Type header to error responses | Skip Montanaro | 2002-03-08 | 1 | -0/+1 |
|
|
* | Remove unused imports from previous checkin. | Martin v. Löwis | 2001-07-25 | 1 | -2/+0 |
|
|
* | Patch #401196: Use getaddrinfo and AF_INET6 in TCP servers and clients. | Martin v. Löwis | 2001-07-24 | 1 | -1/+4 |
|
|
* | Correction to test main. | Eric S. Raymond | 2001-02-09 | 1 | -1/+1 |
|
|
* | String method conversion. | Eric S. Raymond | 2001-02-09 | 1 | -4/+3 |
|
|
* | added __all__ lists to a number of Python modules | Skip Montanaro | 2001-01-20 | 1 | -0/+1 |
|
|
* | Whitespace normalization. | Tim Peters | 2001-01-14 | 1 | -24/+24 |
|
|
* | updated occurences of fqdn algorithm (closes patch #101197) | Peter Schneider-Kamp | 2000-08-16 | 1 | -23/+3 |
|
|
* | Set HTTPServer class variable allow_reuse_address to 1, so restarting | Guido van Rossum | 2000-05-09 | 1 | -0/+2 |
|
|
* | Fix by Moshe Zadka (cleaned up and documented by GvR) to break out the | Guido van Rossum | 1999-10-26 | 1 | -12/+27 |
|
|
* | Typo: the method called is do_SPAM, not handle_SPAM. | Guido van Rossum | 1999-09-15 | 1 | -1/+1 |
|
|
* | Don't just die if gethostbyaddr() fails -- as it can when DNS is | Guido van Rossum | 1999-06-09 | 1 | -6/+10 |
|
|
* | No need to import rfc822. (Andrew Dalke & kjpylint) | Guido van Rossum | 1999-05-03 | 1 | -1/+0 |
|
|
* | Per Cederqvist writes: | Guido van Rossum | 1999-03-30 | 1 | -1/+1 |
|
|
* | Mass check-in after untabifying all files that need it. | Guido van Rossum | 1998-03-26 | 1 | -194/+194 |
|
|
* | Treat all HTTP/1.* versions the same. | Guido van Rossum | 1997-08-12 | 1 | -2/+2 |
|
|
* | fix several bogus var refs in error reporting | Guido van Rossum | 1996-02-12 | 1 | -3/+3 |
|
|
* | Initial revision | Guido van Rossum | 1995-08-04 | 1 | -0/+482 |
|
|