summaryrefslogtreecommitdiffstats
path: root/Lib/http/server.py
Commit message (Collapse)AuthorAgeFilesLines
* Issue #23418: Add missing entries to http.server.__all__.Berker Peksag2015-02-131-1/+4
| | | | Patch by Martin Panter.
* fix behavior of trailing slash redirection when a query string is involved ↵Benjamin Peterson2014-12-261-2/+6
| | | | (closes #23112)
* Issue #22165: SimpleHTTPRequestHandler now supports undecodable file names.Serhiy Storchaka2014-08-171-4/+15
|
* Issue #21323: Fix http.server to again handle scripts in CGI subdirectories,Ned Deily2014-07-131-5/+5
|\ | | | | | | broken by the fix for security issue #19435. Patch by Zach Byrne.
| * Issue #21323: Fix http.server to again handle scripts in CGI subdirectories,Ned Deily2014-07-131-5/+5
| |\ | | | | | | | | | broken by the fix for security issue #19435. Patch by Zach Byrne.
| | * Issue #21323: Fix http.server to again handle scripts in CGI subdirectories,Ned Deily2014-07-131-5/+5
| | | | | | | | | | | | broken by the fix for security issue #19435. Patch by Zach Byrne.
* | | merge 3.3 (#21766)Benjamin Peterson2014-06-151-1/+1
|\ \ \ | |/ /
| * | merge 3.2 (#21766)Benjamin Peterson2014-06-151-1/+1
| |\ \ | | |/
| | * url unquote the path before checking if it refers to a CGI script (closes ↵Benjamin Peterson2014-06-151-1/+1
| | | | | | | | | | | | #21766)
* | | Issue #20976: pyflakes: Remove unused importsVictor Stinner2014-03-201-2/+0
| | |
* | | Issue #20331: Fixed possible FD leaks in various modules:Serhiy Storchaka2014-01-251-9/+15
|\ \ \ | |/ / | | | | | | http.server, imghdr, mailcap, mimetypes, xml.etree.
| * | Issue #20331: Fixed possible FD leaks in various modules:Serhiy Storchaka2014-01-251-9/+15
| | | | | | | | | | | | http.server, imghdr, mailcap, mimetypes, xml.etree.
* | | merge 3.3 (#18574)Benjamin Peterson2014-01-191-1/+1
|\ \ \ | |/ /
| * | fix handling of 100-continue status code (closes #18574)Benjamin Peterson2014-01-191-1/+1
| | |
* | | merge 3.3 (#19435)Benjamin Peterson2013-10-301-5/+4
|\ \ \ | |/ /
| * | merge 3.2 (#19435)Benjamin Peterson2013-10-301-5/+4
| |\ \ | | |/
| | * merge 3.1 (#19435)Benjamin Peterson2013-10-301-5/+4
| | |\
| | | * use the collapsed path in the run_cgi method (closes #19435)Benjamin Peterson2013-10-301-5/+4
| | | |
* | | | merge from 3.3Senthil Kumaran2013-09-301-1/+1
|\ \ \ \ | |/ / /
| * | | Minor code improvement. Review comment by Eric V. SmithSenthil Kumaran2013-09-301-1/+1
| | | |
* | | | Expose --bind argument for http.server, enable http.server to bind to a userSenthil Kumaran2013-09-151-5/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | specified network interface. Patch contributed by Malte Swart. Addresses issue #17764. HG :Enter commit message. Lines beginning with 'HG:' are removed.
* | | | Fix http.server's request handling case on trailing '/'.Senthil Kumaran2013-09-131-0/+4
|\ \ \ \ | |/ / / | | | | | | | | Patch contributed by Vajrasky Kok. Addresses Issue #17324
| * | | Fix http.server's request handling case on trailing '/'.Senthil Kumaran2013-09-131-0/+4
| | | | | | | | | | | | | | | | Patch contributed by Vajrasky Kok. Addresses Issue #17324
* | | | Issue #18200: Back out usage of ModuleNotFoundError (8d28d44f3a9a)Brett Cannon2013-07-041-1/+1
| | | |
* | | | Issue #18200: Update the stdlib (except tests) to useBrett Cannon2013-06-141-1/+1
| | | | | | | | | | | | | | | | ModuleNotFoundError.
* | | | #1291 http.server's send_error takes an optional explain argumentSenthil Kumaran2013-03-151-6/+12
| | | |
* | | | Reverting the changeset b87792757ee8 made for Issue #12921Senthil Kumaran2013-03-051-1/+1
|\ \ \ \ | |/ / /
| * | | Reverting the changeset 5d76a4746d9d made for Issue #12921Senthil Kumaran2013-03-051-1/+1
| |\ \ \ | | |/ /
| | * | Reverting the changeset 5126e62c60af made for Issue #12921Senthil Kumaran2013-03-051-1/+1
| | | |
* | | | Fix Issue #12921: BaseHTTPServer's send_error should send the correct errorSenthil Kumaran2013-03-051-1/+1
|\ \ \ \ | |/ / / | | | | | | | | | | | | response message when send_error includes a message in addition to error status. Patch contributed by Karl.
| * | | Fix Issue #12921: BaseHTTPServer's send_error should send the correct errorSenthil Kumaran2013-03-051-1/+1
| |\ \ \ | | |/ / | | | | | | | | | | | | response message when send_error includes a message in addition to error status. Patch contributed by Karl.
| | * | Fix Issue #12921: BaseHTTPServer's send_error should send the correct errorSenthil Kumaran2013-03-051-1/+1
| | | | | | | | | | | | | | | | | | | | response message when send_error includes a message in addition to error status. Patch contributed by Karl.
* | | | Replace IOError with OSError (#16715)Andrew Svetlov2012-12-251-1/+1
| | | |
* | | | Issue #16706: get rid of os.errorAndrew Svetlov2012-12-181-2/+2
| | | |
* | | | Issue #16088: BaseHTTPRequestHandler's send_error method includes aSenthil Kumaran2012-10-111-1/+3
|/ / / | | | | | | | | | Content-Length header. Patch by Antoine Pitrou.
* | | Issue 14989: http.server --cgi option can enable the CGI http server.Senthil Kumaran2012-06-031-7/+15
| | |
* | | #14809: Add HTTP status codes from RFC 6585 to http.server and http.clientHynek Schlawack2012-05-161-1/+9
| | | | | | | | | | | | Patch by EungJun Yi.
* | | issue6085 - update docs in default branchSenthil Kumaran2012-04-291-1/+1
|\ \ \ | |/ /
| * | Fix issue6085 - Remove the delay caused by fqdn lookup while logging in ↵Senthil Kumaran2012-04-291-2/+2
| | | | | | | | | | | | BaseHTTPRequestHandler
* | | Fix Issue6085 - SimpleHTTPServer address_string to return client ip instead ↵Senthil Kumaran2012-04-291-11/+2
| | | | | | | | | | | | of client hostname
* | | merge to default - Issue 10484 - Incorporate improvements to CGI module - ↵Senthil Kumaran2012-04-111-26/+28
|\ \ \ | |/ / | | | | | | Suggested by Glenn Linderman. Refactor code and tests
| * | 3.2 - Issue 10484 - Incorporate improvements to CGI module - Suggested by ↵Senthil Kumaran2012-04-111-26/+28
| | | | | | | | | | | | Glenn Linderman. Refactor code and tests
* | | merge - fix the incorrect changes made for PATH_INFO value - Issue10484Senthil Kumaran2012-04-101-10/+6
|\ \ \ | |/ /
| * | 3.2- fix the incorrect changes made for PATH_INFO value - Issue10484Senthil Kumaran2012-04-101-10/+6
| | |
* | | closes issue10484 - Fix the http.server's cgi PATH_INFO handling problemSenthil Kumaran2012-03-161-1/+8
|\ \ \ | |/ /
| * | closes issue10484 - Fix the http.server's cgi PATH_INFO handling problemSenthil Kumaran2012-03-161-1/+8
| | |
* | | merge from 3.2. Minor code style improvements in http.server suggested in ↵Senthil Kumaran2011-12-231-6/+3
|\ \ \ | |/ / | | | | | | Issue13294.
| * | Minor code style improvements in http.server suggested in Issue13294.Senthil Kumaran2011-12-231-6/+3
| | |
* | | #13295: http.server now produces valid HTML 4.01 strict.Ezio Melotti2011-11-021-8/+14
| | |
* | | Close #12289: Fix "is executable?" test in the CGI serverVictor Stinner2011-06-201-6/+2
| | | | | | | | | | | | | | | Use os.access(path, os.X_OK) instead of (os.stat(path).st_mode & 0o111 != 0), and ignore the test on Windows.