aboutsummaryrefslogtreecommitdiff
path: root/Lib/http
Commit message (Expand)AuthorAgeFilesLines
* Fix typo in docstring (GH-23515)Fernando Toledo2020-12-211-1/+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-021-2/+1
* bpo-42413: socket.timeout is now an alias of TimeoutError (GH-23413)Christian Heimes2020-11-201-1/+1
* bpo-40968: Send http/1.1 ALPN extension (#20959)Christian Heimes2020-11-131-0/+3
* bpo-38976: Add support for HTTP Only flag in MozillaCookieJar (#17471)Jacob Neil Taylor2020-10-231-14/+26
* bpo-39603: Prevent header injection in http methods (GH-18485)AMIR2020-07-181-0/+15
* bpo-41002: Optimize HTTPResponse.read with a given amount (GH-20943)Bruce Merry2020-06-241-10/+25
* bpo-39481: PEP 585 for a variety of modules (GH-19423)Batuhan Taşkaya2020-04-101-0/+3
* bpo-40094: CGIHTTPRequestHandler logs exit code (GH-19285)Victor Stinner2020-04-021-2/+3
* bpo-39507: Add HTTP status 418 "I'm a Teapot" (GH-18291)Ross2020-03-151-0/+3
* bpo-38576: Disallow control characters in hostnames in http.client (GH-18995)Ashwin Ramaswami2020-03-141-0/+10
* bpo-39509: Update HTTP status code to follow IANA (GH-18294)Dong-hee Na2020-03-141-0/+4
* 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-051-1/+13
* bpo-38804: Fix REDoS in http.cookiejar (GH-17157)bcaller2019-11-221-6/+12
* bpo-38863: Improve is_cgi() in http.server (GH-17312)Siwon Kang2019-11-221-2/+4
* bpo-38216, bpo-36274: Allow subclasses to separately override validation and ...Jason R. Coombs2019-09-281-9/+18
* bpo-12144: Handle cookies with expires attribute in CookieJar.make_cookies (G...Xtreak2019-09-131-2/+1
* bpo-35640: Allow passing PathLike arguments to SimpleHTTPRequestHandler (GH-1...Géry Ogam2019-09-111-1/+1
* bpo-26589: Add http status code 451 (GH-15413)Raymond Hettinger2019-08-231-0/+5
* Correct description of HTTP status code 308. (GH-15078)Florian Wendelborn2019-08-031-1/+1
* bpo-37440: Enable TLS 1.3 post-handshake auth in http.client (GH-14448)Christian Heimes2019-06-301-0/+7
* bpo-36793: Remove unneeded __str__ definitions. (GH-13081)Serhiy Storchaka2019-05-061-2/+1
* bpo-30458: Use InvalidURL instead of ValueError. (GH-13044)Gregory P. Smith2019-05-011-1/+1
* bpo-30458: Disallow control chars in http URLs. (GH-12755)Gregory P. Smith2019-04-301-0/+14
* bpo-36050: optimize HTTPResponse.read() (GH-12698)Inada Naoki2019-04-061-32/+10
* bpo-36522: Print all values for headers with multiple values. (GH-12681)Matt Houglum2019-04-041-2/+2
* bpo-35647: Fix path check in cookiejar (#11436)Xtreak2019-03-101-5/+9
* bpo-35121: prefix dot in domain for proper subdomain validation (GH-10258)Xtreak2019-03-091-2/+11
* bpo-36043: FileCookieJar supports os.PathLike (GH-11945)Stéphane Wirtel2019-03-011-4/+2
* 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-34911: Added support for secure websocket cookies (GH-9734)Paul Bailey2018-10-081-1/+3
* bpo-33365: print the header values beside the keys (GH-6611)Marco Strigl2018-06-191-1/+1
* 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-991266: Fix quoting of Comment attribute of SimpleCookie (GH-6555)Berker Peksag2018-04-231-0/+2
* Removed a confusing line from a docstring in http.cookies (GH-6482)Alex Gaynor2018-04-151-2/+1
* bpo-29613: Added support for SameSite cookies (GH-6413)Alex Gaynor2018-04-071-0/+1
* bpo-31639: Use threads in http.server module. (GH-5018)Julien Palard2018-03-231-2/+7
* bpo-31399: Let OpenSSL verify hostname and IP address (#3462)Christian Heimes2018-01-271-8/+2
* bpo-32297: Few misspellings found in Python source code comments. (#4803)Mike2017-12-141-1/+1
* bpo-31945: Configurable blocksize in HTTP(S)Connection (#4279)Nir Soffer2017-11-061-7/+7
* bpo-30553: Add status code 421 to http.HTTPStatus (GH-2589)Vitor Pereira2017-10-261-0/+3
* bpo-31462: Remove trailing whitespaces. (#3564)Serhiy Storchaka2017-09-141-2/+2
* bpo-31370: Remove support for threads-less builds (#3385)Antoine Pitrou2017-09-071-4/+1
* bpo-28707: Add the directory parameter to http.server.SimpleHTTPRequestHandle...Stéphane Wirtel2017-05-241-2/+13