Final head of the former 3.2 branch
- 5f21f43 #22758: fix regression in handling of secure cookies. by R David Murray · 9 years ago
- 9bd476e allow square brackets in cookie values (closes #22931) by Benjamin Peterson · 10 years ago
- dad182c Lax cookie parsing in http.cookies could be a security issue when combined by Antoine Pitrou · 11 years ago
- f0746ca Issue #16037: HTTPMessage.readheaders() raises an HTTPException when more than by Georg Brandl · 11 years ago
- 915a30f Issue #21323: Fix http.server to again handle scripts in CGI subdirectories, by Ned Deily · 11 years ago
- 73b8b1c url unquote the path before checking if it refers to a CGI script (closes #21766) by Benjamin Peterson · 11 years ago
- 35aca89 merge 3.1 (#19435) by Benjamin Peterson · 12 years ago
- 04e9de4 use the collapsed path in the run_cgi method (closes #19435) by Benjamin Peterson · 12 years ago
- 1e7551d Reverting the changeset 5126e62c60af made for Issue #12921 by Senthil Kumaran · 12 years ago
- 3fb066d Fix Issue #12921: BaseHTTPServer's send_error should send the correct error by Senthil Kumaran · 12 years ago
- b5b9c8c Issue #16723: httplib.HTTPResponse no longer marked closed when the connection by Serhiy Storchaka · 13 years ago
- de59565 Simplify code in HTTPResponse.read() by Antoine Pitrou · 13 years ago
- beec61a Issue #15633: httplib.HTTPResponse is now mark closed when the server sends less than the advertised Content-Length. by Antoine Pitrou · 13 years ago
- 084daa2 Issue #16298: In HTTPResponse.read(), close the socket when there is no Content-Length and the incoming stream is finished. by Antoine Pitrou · 13 years ago
- 0847db7 #15980: properly escape newlines in docstrings. Patch by Serhiy Storchaka. by Ezio Melotti · 13 years ago
- aeeba26 Fix for issue14426 - buildbots here I come by Senthil Kumaran · 13 years ago
- 00c2ec2 Issue #14426: Correct the Date format in Expires attribute of Set-Cookie. Patch by Federico Reghenzani and Müte Invert by Senthil Kumaran · 13 years ago
- 5fa4a89 Fix Issue14721: Send Content-length: 0 for empty body () in the http.client requests by Senthil Kumaran · 13 years ago
- db727b4 Fix issue6085 - Remove the delay caused by fqdn lookup while logging in BaseHTTPRequestHandler by Senthil Kumaran · 13 years ago
- 7e70a5c httplib - minor update to check empty response by Senthil Kumaran · 13 years ago
- b12771a 3.2 - Fix for Issue13684 - httplib tunnel infinite loop by Senthil Kumaran · 13 years ago
- d70846b 3.2 - Issue 10484 - Incorporate improvements to CGI module - Suggested by Glenn Linderman. Refactor code and tests by Senthil Kumaran · 13 years ago
- dbb369d 3.2- fix the incorrect changes made for PATH_INFO value - Issue10484 by Senthil Kumaran · 13 years ago
- be3f851 closes issue10484 - Fix the http.server's cgi PATH_INFO handling problem by Senthil Kumaran · 13 years ago
- 3075549 Minor code style improvements in http.server suggested in Issue13294. by Senthil Kumaran · 14 years ago
- 23760e9 Don’t interpret backslashes in ASCII diagram in a docstring by Éric Araujo · 14 years ago
- e130a52 Remove duplication. by Ezio Melotti · 14 years ago
- a5a9a9c Fixes #10860: Handle empty port after port delimiter in httplib by Łukasz Langa · 14 years ago
- ad87fa6 Issue #13073 - Address the review comments made by Ezio. by Senthil Kumaran · 14 years ago
- 25e2cd1 Fix spacing in string literal. by Georg Brandl · 14 years ago
- eb71ad4 Fix closes Issue12676 - Invalid identifier used in TypeError message in http.client. by Senthil Kumaran · 14 years ago
- 56f9a02 merge 3.1 by Victor Stinner · 14 years ago
- 628225c Issue #5537: Fix time2isoz() and time2netscape() functions of httplib.cookiejar by Victor Stinner · 14 years ago
- bec7886 Merge from 3.1 by Senthil Kumaran · 14 years ago
- 1b407fe Issue #11567 - Let's have the DOCTYPE as HTML instead of XHTML. by Senthil Kumaran · 14 years ago
- 9f9193e Error message in http.server code. Missed to update in 3.1 branch initially. by Senthil Kumaran · 14 years ago
- b253c9f Fix issue11567: http.server DEFAULT_ERROR_MESSAGE format. Patch by Gennadiy Zlobin. by Senthil Kumaran · 14 years ago
- 4969f70 #11515: Merge with 3.1. by Ezio Melotti · 14 years ago
- 42da663 #11515: fix several typos. Patch by Piotr Kasprzyk. by Ezio Melotti · 14 years ago
- 2774310 Merged revisions 87627,87638,87739,87760,87771,87787,87984,87986,88108,88115,88144,88165,88329,88364-88365,88369-88370,88423-88424 via svnmerge from by Georg Brandl · 15 years ago
- c7c199f #10983: fix several bugs in the _tunnel implementation that seem to have missed while porting between branches. A unittest is needed! by Georg Brandl · 15 years ago
- 5953128 To match the behaviour of HTTP server, the HTTP client library now also encodes by Armin Ronacher · 15 years ago
- 8d96d77 Issue #10980: encode headers with latin1 instead of ASCII in the HTTP server. by Armin Ronacher · 15 years ago
- daa7ba0 Merged revisions 87550 via svnmerge from by R. David Murray · 15 years ago
- e05ca2a #9824: encode , and ; in cookie values so that browsers don't split on them by R. David Murray · 15 years ago
- 1e991f2 Fix some mistakes- Issue3243 (r87399) Correcting the operator precendence by Senthil Kumaran · 15 years ago
- 7bc0d87 Issue3243 - Support iterable bodies in httplib. Patch contributions by Xuanji Li and Chris AtLee. by Senthil Kumaran · 15 years ago
- ff1bbba Merged revisions 87373,87381 via svnmerge from by Antoine Pitrou · 15 years ago
- 5466bf1 Fix Issue6791 - Limit the HTTP header readline with _MAXLENGTH. Patch by Antoine Pitrou by Senthil Kumaran · 15 years ago
- 988dbd7 Issue #10711: Remove HTTP 0.9 support from http.client. The `strict` by Antoine Pitrou · 15 years ago
- 3022ce1 Merged revisions 87317 via svnmerge from by Antoine Pitrou · 15 years ago
- c492437 Issue #10714: Limit length of incoming request in http.server to 65536 bytes by Antoine Pitrou · 15 years ago
- cbd2ab1 #1513299: cleanup some map() uses where a comprehension works better. by Georg Brandl · 15 years ago
- e4dad4f Fix issue3709 - BaseHTTPRequestHandler will buffer the headers and write only on end_headers call. by Senthil Kumaran · 15 years ago
- 2e89cf3 Merged revisions 86450 via svnmerge from by Senthil Kumaran · 15 years ago
- 74ebd9e Fix Issue5111 - Wrap the Ipv6 host with [] in the Host header by Senthil Kumaran · 15 years ago
- 938ece7 Merged revisions 86195 via svnmerge from by Brian Curtin · 15 years ago
- cbad4df Close subprocess pipes in the non-UNIX section of run_cgi. by Brian Curtin · 15 years ago
- d532321 Issue #5639: Add a *server_hostname* argument to `SSLContext.wrap_socket` by Antoine Pitrou · 15 years ago
- 1f7fffb #2830: add html.escape() helper and move cgi.escape() uses in the standard library to it. It defaults to quote=True and also escapes single quotes, which makes casual use safer. The cgi.escape() interface is not touched, but emits a (silent) PendingDeprecationWarning. by Georg Brandl · 15 years ago
- 8060399 Typo. It is rather obvious that this code isn't tested :/ by Antoine Pitrou · 15 years ago
- 803e6d6 Issue #9003: http.client.HTTPSConnection, urllib.request.HTTPSHandler and by Antoine Pitrou · 15 years ago
- fa9c38d FakeSocket is (supposed to be) gone in 3.x by Antoine Pitrou · 15 years ago
- 9730456 Merged revisions 85205 via svnmerge from by Senthil Kumaran · 15 years ago
- 58d5dbf Fix Issue10012 - httplib headers, which are (sometimes mistakenly) int are explicitly cast to str (bytes - in py3k). by Senthil Kumaran · 15 years ago
- 5e8826c Merged revisions 85202 via svnmerge from by Senthil Kumaran · 15 years ago
- 4271372 Fix Issue9272 - Change CGIHTTPServer to give the child program a copy of os.environ by Senthil Kumaran · 15 years ago
- 996e13c Merged revisions 85169 via svnmerge from by Senthil Kumaran · 15 years ago
- 5a2da3b Use proper variable name 'data' instead of 'str' in the send method. by Senthil Kumaran · 15 years ago
- 0f476d4 Issue1491 - BaseHTTPServer incorrectly implements response code 100 by Senthil Kumaran · 15 years ago
- 3357840 Merged revisions 83521 via svnmerge from by Senthil Kumaran · 15 years ago
- 9f8dc44 Fix Issue8572 - httplib getheader() throws error instead of default by Senthil Kumaran · 15 years ago
- e5d518f Merged revisions 83370,83372-83374,83384 via svnmerge from by Georg Brandl · 15 years ago
- caa78fe Merged revisions 83371,83390 via svnmerge from by Georg Brandl · 15 years ago
- cea7e55 Merged revisions 83393,83396,83398,83404-83405,83408 via svnmerge from by Georg Brandl · 15 years ago
- b16e38b #8826: the "expires" attribute value is a date string with spaces, but apparently not all user-agents put it in quotes. Handle that as a special case. by Georg Brandl · 15 years ago
- 87a1564 #5147: revert accidental indentation of header constant for MozillaCookieJar. by Georg Brandl · 15 years ago
- 62e2ca2 #8292: Fix three instances of truth tests on return values of filter() (which is always true in Python 3). by Georg Brandl · 15 years ago
- 76e155a #3788: more tests for http.cookies, now at 95% coverage. Also bring coding style in the module up to PEP 8, where it does not break backwards compatibility. by Georg Brandl · 15 years ago
- 2c4973d Merged revisions 82985 via svnmerge from by Gregory P. Smith · 15 years ago
- 756f547 #9032: XML-RPC client: Transport.request() retries on EPIPE error by Victor Stinner · 15 years ago
- 41e6c3d Fixes Issue #3704: http.cookiejar was not properly handling URLs with a / in by Gregory P. Smith · 15 years ago
- 3e5cd1d Merged revisions 81465-81466,81468,81679,81735,81760,81868,82183 via svnmerge from by Benjamin Peterson · 15 years ago
- 41142f5 Merged revisions 81689 via svnmerge from by Senthil Kumaran · 15 years ago
- 447f82f Merged revisions 81687 via svnmerge from by Senthil Kumaran · 15 years ago
- 2682638 Merged revisions 80587 via svnmerge from by Senthil Kumaran · 15 years ago
- 71fb6c8 Merged revisions 80583 via svnmerge from by Senthil Kumaran · 15 years ago
- 11dbfd4 Merged revisions 78417 via svnmerge from by Benjamin Peterson · 15 years ago
- 90f5ba5 convert shebang lines: python -> python3 by Benjamin Peterson · 15 years ago
- 613c61c Merged revisions 78301 via svnmerge from by Senthil Kumaran · 16 years ago
- 7aa2621 Merged revisions 78299 via svnmerge from by Senthil Kumaran · 16 years ago
- b406637 Merged revisions 77263-77264 via svnmerge from by Gregory P. Smith · 16 years ago
- 4b9fbeb Merged revisions 76910 via svnmerge from by Senthil Kumaran · 16 years ago
- 47fff87 Merged revisions 76908 via svnmerge from by Senthil Kumaran · 16 years ago
- ca5130c Merged revisions 76210 via svnmerge from by Senthil Kumaran · 16 years ago
- e29cd16 Merged revisions 76208 via svnmerge from by Senthil Kumaran · 16 years ago
- 595ad32 Merged revisions 75137 via svnmerge from by Antoine Pitrou · 16 years ago
- ead1d62 [NOTE: the original bug doesn't exist in py3k but this adds Kirk's tests and fixes by Antoine Pitrou · 16 years ago
- a833206 Merged revisions 74745 via svnmerge from by Benjamin Peterson · 16 years ago
- 8719ad5 Merged revisions 74277,74321,74323,74326,74355,74465,74467,74488,74492,74513,74531,74549,74553,74625,74632,74643-74644,74647,74652,74666,74671,74727,74739 via svnmerge from by Benjamin Peterson · 16 years ago