summaryrefslogtreecommitdiffstats
path: root/Lib/http
Commit message (Expand)AuthorAgeFilesLines
* [3.11] gh-123067: Fix quadratic complexity in parsing "-quoted cookie values ...Miss Islington (bot)2024-09-041-26/+8
* [3.11] gh-100985: Consistently wrap IPv6 IP address during CONNECT (GH-100986...Serhiy Storchaka2024-02-171-5/+10
* [3.11] gh-113199: Make read1() and readline() of HTTPResponse close IO after ...Miss Islington (bot)2023-12-181-0/+4
* [3.11] gh-73561: Omit interface scope from IPv6 when used as Host header (GH-...Miss Islington (bot)2023-11-191-2/+10
* [3.11] gh-104924: Fix `read()able` in `http.client` log messages (gh-104926) ...Miss Islington (bot)2023-05-261-2/+2
* [3.11] gh-103204: `http.server` - Enforce that HTTP version numbers must cons...Miss Islington (bot)2023-05-121-0/+4
* [3.11] gh-104049: do not expose on-disk location from SimpleHTTPRequestHandle...Miss Islington (bot)2023-05-031-1/+1
* [3.11] GH-103472: close response in HTTPConnection._tunnel (GH-103473) (#104077)Miss Islington (bot)2023-05-021-15/+18
* [3.11] gh-103112: Add http.client.HTTPResponse.read docstring and fix pydoc o...Miss Islington (bot)2023-03-291-0/+1
* [3.11] gh-100474: Fix handling of dirs named index.html in http.server (GH-10...Miss Islington (bot)2022-12-241-1/+1
* [3.11] gh-99576: Fix cookiejar file that was not truncated for some classes (...Miss Islington (bot)2022-12-201-2/+8
* gh-100001: Also escape \s in http.server log messages. (GH-100038)Miss Islington (bot)2022-12-051-0/+1
* gh-100001: Omit control characters in http.server stderr logs. (GH-100002)Miss Islington (bot)2022-12-051-1/+10
* Document that MozillaCookieJar works for curl's cookie files (GH-91852)Miss Islington (bot)2022-10-031-1/+1
* Run Tools/scripts/reindent.py (GH-94225)Miss Islington (bot)2022-06-261-1/+1
* gh-87389: Fix an open redirection vulnerability in http.server. (GH-93879)Miss Islington (bot)2022-06-211-0/+7
* [3.11] gh-79096: Protect cookie file created by {LWP,Mozilla}CookieJar.save()...Łukasz Langa2022-06-091-2/+2
* gh-91996: Add an HTTPMethod StrEnum to http (GH-91997)cibofo2022-05-051-2/+31
* bpo-46285: Add command-line option -p/--protocol to module http.server (#30999)Géry Ogam2022-05-021-7/+12
* bpo-42066: CookieJar cookies should not be sorted (GH-22745)Iman Kermani2022-04-211-7/+2
* bpo-46075: Store localhost cookies in CookieJar (#30108)Nick2022-04-191-2/+3
* 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
* bpo-46565: `del` loop vars that are leaking into module namespaces (GH-30993)Nikita Sobolev2022-02-031-2/+1
* bpo-28953: Use `raise from` when raising new IncompleteRead (GH-29861)1809092021-12-071-2/+2
* bpo-45328: Avoid failure in OSs without TCP_NODELAY support (GH-28646)rtobar2021-10-061-1/+7
* 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
* bpo-44022: Fix http client infinite line reading (DoS) after a HTTP 100 Conti...Gen Xu2021-05-051-17/+21
* bpo-37363: Add audit events to the `http.client` module (GH-21321)Saiyang Gou2021-04-231-0/+4
* bpo-38659: [Enum] add _simple_enum decorator (GH-25497)Ethan Furman2021-04-211-2/+4
* Revert "bpo-38659: [Enum] add _simple_enum decorator (GH-25285)" (GH-25476)Ethan Furman2021-04-201-4/+2
* bpo-38659: [Enum] add _simple_enum decorator (GH-25285)Ethan Furman2021-04-201-2/+4
* Update client.py (GH-24827)Géry Ogam2021-03-131-3/+0
* bpo-43332: Buffer proxy connection setup packets before sending. (GH-24780)Gregory P. Smith2021-03-081-10/+11
* 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-031-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-251-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