| Commit message (Expand) | Author | Age | Files | Lines |
* | bpo-40321: Add missing test, slightly expand documentation (GH-28760) | Łukasz Langa | 2021-10-06 | 1 | -1/+1 |
|
|
* | bpo-40321: Support HTTP response status code 308 in urllib.request (#19588) | Jochem Schulenklopper | 2021-10-06 | 1 | -4/+11 |
|
|
* | Update URLs in comments and metadata to use HTTPS (GH-27458) | Noah Kantrowitz | 2021-07-30 | 1 | -1/+1 |
|
|
* | bpo-44002: Switch to lru_cache in urllib.parse. (GH-25798) | Gregory P. Smith | 2021-05-12 | 1 | -29/+29 |
|
|
* | bpo-43882 Remove the newline, and tab early. From query and fragments. (GH-25... | Senthil Kumaran | 2021-05-05 | 1 | -3/+5 |
|
|
* | bpo-43979: Remove unnecessary operation from urllib.parse.parse_qsl (GH-25756) | Dong-hee Na | 2021-04-30 | 1 | -2/+1 |
|
|
* | bpo-43882 - urllib.parse should sanitize urls containing ASCII newline and ta... | Senthil Kumaran | 2021-04-29 | 1 | -0/+6 |
|
|
* | bpo-42967: coerce bytes separator to string in urllib.parse_qs(l) (#24818) | Ken Jin | 2021-04-11 | 1 | -0/+1 |
|
|
* | bpo-43075: Fix ReDoS in urllib AbstractBasicAuthHandler (GH-24391) | Yeting Li | 2021-04-07 | 1 | -1/+1 |
|
|
* | bpo-42967: Fix urllib.parse docs and make logic clearer (GH-24536) | Ken Jin | 2021-02-15 | 1 | -2/+1 |
|
|
* | bpo-42967: only use '&' as a query string separator (#24297) | Adam Goldschmidt | 2021-02-14 | 1 | -5/+15 |
|
|
* | Allow / character in username,password fields in _PROXY envvars. (#23973) | Senthil Kumaran | 2020-12-29 | 1 | -1/+5 |
|
|
* | bpo-40968: Send http/1.1 ALPN extension (#20959) | Christian Heimes | 2020-11-13 | 1 | -0/+2 |
|
|
* | bpo-41471: Ignore invalid prefix lengths in system proxy settings on macOS (G... | Ronald Oussoren | 2020-10-19 | 1 | -0/+5 |
|
|
* | bpo-39481: PEP 585 for a variety of modules (GH-19423) | Batuhan Taşkaya | 2020-04-10 | 1 | -0/+3 |
|
|
* | bpo-39503: CVE-2020-8492: Fix AbstractBasicAuthHandler (GH-18284) | Victor Stinner | 2020-04-02 | 1 | -19/+50 |
|
|
* | bpo-39548: Fix handling of 'WWW-Authenticate' header for Digest Auth (GH-18338) | Stephen Balousek | 2020-02-29 | 1 | -3/+3 |
|
|
* | bpo-37970: update and improve urlparse and urlsplit doc-strings (GH-16458) | idomic | 2020-02-16 | 1 | -6/+35 |
|
|
* | bpo-39057: Fix urllib.request.proxy_bypass_environment(). (GH-17619) | Serhiy Storchaka | 2020-01-05 | 2 | -13/+15 |
|
|
* | bpo-38686: fix HTTP Digest handling in request.py (#17045) | PypeBros | 2019-11-22 | 1 | -2/+4 |
|
|
* | Remove binding of captured exceptions when not used to reduce the chances of ... | Pablo Galindo | 2019-11-19 | 1 | -1/+1 |
|
|
* | bpo-27657: Fix urlparse() with numeric paths (#661) | Tim Graham | 2019-10-18 | 1 | -21/+1 |
|
|
* | bpo-32498: urllib.parse.unquote also accepts bytes (GH-7768) | Stein Karlsen | 2019-10-14 | 1 | -0/+2 |
|
|
* | bpo-25068: urllib.request.ProxyHandler now lowercases the dict keys (GH-13489) | Zackery Spytz | 2019-09-13 | 1 | -0/+1 |
|
|
* | bpo-12707: deprecate info(), geturl(), getcode() methods in favor of headers,... | Ashwin Ramaswami | 2019-09-13 | 2 | -11/+7 |
|
|
* | bpo-35922: Fix RobotFileParser when robots.txt has no relevant crawl delay or... | Rémi Lapeyre | 2019-06-16 | 1 | -2/+6 |
|
|
* | bpo-36742: Corrects fix to handle decomposition in usernames (#13812) | Steve Dower | 2019-06-04 | 1 | -3/+3 |
|
|
* | bpo-35397: Remove deprecation and document urllib.parse.unwrap (GH-11481) | Rémi Lapeyre | 2019-05-27 | 2 | -11/+9 |
|
|
* | bpo-36842: Implement PEP 578 (GH-12613) | Steve Dower | 2019-05-23 | 1 | -0/+1 |
|
|
* | bpo-35907, CVE-2019-9948: urllib rejects local_file:// scheme (GH-13474) | Victor Stinner | 2019-05-22 | 1 | -1/+1 |
|
|
* | bpo-36948: Fix NameError in urllib.request.URLopener.retrieve (GH-13389) | Xtreak | 2019-05-19 | 1 | -5/+5 |
|
|
* | bpo-36742: Fixes handling of pre-normalization characters in urlsplit() (GH-1... | Steve Dower | 2019-04-30 | 1 | -4/+7 |
|
|
* | bpo-12910: update and correct quote docstring (#2568) | Jörn Hees | 2019-04-10 | 1 | -13/+20 |
|
|
* | bpo-36431: Use PEP 448 dict unpacking for merging two dicts. (GH-12553) | Serhiy Storchaka | 2019-03-27 | 1 | -2/+1 |
|
|
* | bpo-36216: Add check for characters in netloc that normalize to separators (G... | Steve Dower | 2019-03-07 | 1 | -0/+17 |
|
|
* | closes bpo-35309: cpath should be capath (GH-10699) | Boštjan Mejak | 2018-11-25 | 1 | -1/+1 |
|
|
* | bpo-34866: Adding max_num_fields to cgi.FieldStorage (GH-9660) | matthewbelisle-wf | 2018-10-19 | 1 | -3/+19 |
|
|
* | bpo-21475: Support the Sitemap extension in robotparser (GH-6883) | Christopher Beacham | 2018-05-16 | 1 | -0/+12 |
|
|
* | bpo-32861: urllib.robotparser fix incomplete __str__ methods. (GH-5711) | Michael Lazar | 2018-05-14 | 1 | -5/+12 |
|
|
* | bpo-27485: Rename and deprecate undocumented functions in urllib.parse (GH-2205) | Cheryl Sabella | 2018-04-25 | 2 | -57/+152 |
|
|
* | bpo-33034: Improve exception message when cast fails for {Parse,Split}Result.... | Matt Eaton | 2018-03-20 | 1 | -1/+5 |
|
|
* | Revert unneccessary changes made in bpo-30296 and apply other improvements. (... | Serhiy Storchaka | 2018-02-26 | 1 | -1/+2 |
|
|
* | urllib.request: Remove unused import (GH-5268) | INADA Naoki | 2018-01-22 | 1 | -1/+0 |
|
|
* | bpo-32323: urllib.parse.urlsplit() must not lowercase() IPv6 scope value (#4867) | Коренберг Марк | 2017-12-21 | 1 | -4/+6 |
|
|
* | bpo-31325: Fix usage of namedtuple in RobotFileParser.parse() (#4529) | Berker Peksag | 2017-11-23 | 1 | -5/+4 |
|
|
* | remove a redundant lower in urllib.parse.urlsplit (#3008) | Oren Milman | 2017-09-03 | 1 | -2/+1 |
|
|
* | urllib: Simplify splithost by calling into urlparse. (#1849) | postmasters | 2017-06-20 | 1 | -1/+1 |
|
|
* | bpo-30296 Remove unnecessary tuples, lists, sets, and dicts (#1489) | Jon Dufresne | 2017-05-18 | 1 | -6/+5 |
|
|
* | bpo-29976: urllib.parse clarify '' in scheme values. (GH-984) | Senthil Kumaran | 2017-05-18 | 1 | -11/+19 |
|
|
* | bpo-30022: Get rid of using EnvironmentError and IOError (except test… (#1051) | Serhiy Storchaka | 2017-04-16 | 1 | -1/+1 |
|
|