summaryrefslogtreecommitdiffstats
path: root/Lib/http/server.py
Commit message (Expand)AuthorAgeFilesLines
* gh-109096: Deprecate `http.server.CGIHTTPRequestHandler` (#109387)Gregory P. Smith2023-09-151-6/+12
* gh-103204: `http.server` - Enforce that HTTP version numbers must consist onl...Ben Kallus2023-05-121-0/+4
* gh-104049: do not expose on-disk location from SimpleHTTPRequestHandler (#104...Ethan Furman2023-05-031-1/+1
* gh-91219: http - use subclassing to override index_pages attribute (GH-100731)Ethan Furman2023-01-031-4/+2
* gh-100474: Fix handling of dirs named index.html in http.server (GH-100475)James Frost2022-12-241-1/+1
* gh-100001: Also escape \s in http.server log messages. (#100038)Gregory P. Smith2022-12-051-0/+1
* gh-100001: Omit control characters in http.server stderr logs. (#100002)Gregory P. Smith2022-12-051-1/+10
* gh-91219: Add an index_pages default list and parameter to SimpleHTTPRequestH...Myron Walker2022-06-231-2/+5
* gh-87389: Fix an open redirection vulnerability in http.server. (#93879)Gregory P. Smith2022-06-211-0/+7
* bpo-46285: Add command-line option -p/--protocol to module http.server (#30999)Géry Ogam2022-05-021-7/+12
* closes bpo-46736: SimpleHTTPRequestHandler now uses HTML5. (GH-31533)Dong-hee Na2022-02-231-12/+10
* bpo-46436: Fix command-line option -d/--directory in module http.server (GH-3...Géry Ogam2022-02-031-13/+14
* Fix typos in multiple files (GH-26689)Binbin2021-06-131-1/+1
* bpo-43972: Set content-length to 0 for http.server.SimpleHTTPRequestHandler 3...Stephen Rosen2021-05-061-0/+1
* GH-5054: CGIHTTPRequestHandler.run_cgi() HTTP_ACCEPT improperly parsed (#23638)Senthil Kumaran2020-12-051-6/+1
* Remove the conditional for setting query. (#23604)Senthil Kumaran2020-12-031-2/+1
* bpo-42413: socket.timeout is now an alias of TimeoutError (GH-23413)Christian Heimes2020-11-201-1/+1
* bpo-40094: CGIHTTPRequestHandler logs exit code (GH-19285)Victor Stinner2020-04-021-2/+3
* bpo-35292: Avoid calling mimetypes.init when http.server is imported (GH-17822)An Long2020-01-081-13/+10
* bpo-38907: Suppress any exception when attempting to set V6ONLY. (GH-17864)Jason R. Coombs2020-01-061-1/+5
* bpo-38907: In http.server script, restore binding to IPv4 on Windows. (GH-17851)Jason R. Coombs2020-01-061-1/+13
* bpo-38863: Improve is_cgi() in http.server (GH-17312)Siwon Kang2019-11-221-2/+4
* bpo-35640: Allow passing PathLike arguments to SimpleHTTPRequestHandler (GH-1...Géry Ogam2019-09-111-1/+1
* bpo-24209: In http.server script, rely on getaddrinfo to bind to preferred ad...Jason R. Coombs2019-02-071-10/+20
* bpo-34711: Return HTTPStatus.NOT_FOUND if path.endswith('/') and not a direct...Michael Felt2018-12-261-0/+8
* Adds IPv6 support when invoking http.server directly. (GH-10595)Lisa Roach2018-11-261-0/+3
* bpo-33663: Convert content length to string before putting to header (GH-7754)ValeriyaSinevich2018-06-181-1/+1
* bpo-31639: Change ThreadedHTTPServer to ThreadingHTTPServer class name (GH-7195)Géry Ogam2018-05-291-3/+3
* bpo-31639: Use threads in http.server module. (GH-5018)Julien Palard2018-03-231-2/+7
* bpo-31462: Remove trailing whitespaces. (#3564)Serhiy Storchaka2017-09-141-2/+2
* bpo-28707: Add the directory parameter to http.server.SimpleHTTPRequestHandle...Stéphane Wirtel2017-05-241-2/+13
* bpo-30166: Import command-line parsing modules only when needed. (#1293)Serhiy Storchaka2017-05-041-1/+2
* bpo-29654 : Support If-Modified-Since HTTP header (browser cache) (#298)Pierre Quentel2017-04-021-4/+35
* Issue #28548: Parse HTTP request version even if too many words receivedMartin Panter2016-11-191-15/+18
* Issue #25738: Merge HTTP server from 3.5Martin Panter2016-06-081-13/+20
|\
| * Issue #25738: Don’t send message body for 205 Reset ContentMartin Panter2016-06-081-10/+20
* | Issue #24902: Print server URL on http.server startupBerker Peksag2016-04-291-1/+2
* | Issue #26657: Merge http.server fix from 3.5Martin Panter2016-04-181-3/+3
|\ \ | |/
| * Issue #26657: Fix Windows directory traversal vulnerability with http.serverMartin Panter2016-04-181-3/+3
* | Issue #26404: Add context manager to socketserver, by Aviv PalivodaMartin Panter2016-04-131-10/+8
* | Issue #26585: Eliminate _quote_html() and use html.escape(quote=False)Martin Panter2016-04-111-8/+8
* | Issue #26586: Simple enhancements to BaseHTTPRequestHandler by Xiang ZhangMartin Panter2016-04-031-15/+13
* | Issue #26586: Merge excessive HTTP header handling from 3.5Martin Panter2016-04-031-0/+7
|\ \ | |/
| * Issue #26586: Handle excessive header fields in http.server, by Xiang ZhangMartin Panter2016-04-031-0/+7
* | Issue #747320: Use email.utils.formatdate() to avoid code duplicationBerker Peksag2016-03-141-6/+2
|/
* Merge typo fixes from 3.4 into 3.5Martin Panter2015-10-071-1/+1
|\
| * Various minor typos in documentation and commentsMartin Panter2015-10-071-1/+1
* | Issues #25232, #24657: Merge two CGI server fixes from 3.4 into 3.5Martin Panter2015-10-031-9/+10
|\ \ | |/
| * Issue #24657: Prevent CGIRequestHandler from collapsing the URL queryMartin Panter2015-10-031-4/+9
| * Issue #25232: Fix CGIRequestHandler's splitting of URL queryMartin Panter2015-10-031-5/+1