summaryrefslogtreecommitdiff
path: root/Lib/urllib/parse.py
Commit message (Expand)AuthorAgeFilesLines
* [3.9] bpo-43882 Remove the newline, and tab early. From query and fragments. ...Senthil Kumaran2021-05-031-3/+5
* [3.9] bpo-43882 - urllib.parse should sanitize urls containing ASCII newline ...Miss Islington (bot)2021-04-291-0/+6
* bpo-42967: coerce bytes separator to string in urllib.parse_qs(l) (GH-24818)Miss Islington (bot)2021-04-111-0/+1
* [3.9] bpo-42967: only use '&' as a query string separator (GH-24297) (#24528)Senthil Kumaran2021-02-151-5/+14
* bpo-39481: PEP 585 for a variety of modules (GH-19423)Batuhan Taşkaya2020-04-101-0/+3
* bpo-37970: update and improve urlparse and urlsplit doc-strings (GH-16458)idomic2020-02-161-6/+35
* bpo-39057: Fix urllib.request.proxy_bypass_environment(). (GH-17619)Serhiy Storchaka2020-01-051-2/+2
* bpo-27657: Fix urlparse() with numeric paths (#661)Tim Graham2019-10-181-21/+1
* bpo-32498: urllib.parse.unquote also accepts bytes (GH-7768)Stein Karlsen2019-10-141-0/+2
* bpo-36742: Corrects fix to handle decomposition in usernames (#13812)Steve Dower2019-06-041-3/+3
* bpo-35397: Remove deprecation and document urllib.parse.unwrap (GH-11481)Rémi Lapeyre2019-05-271-7/+5
* bpo-36742: Fixes handling of pre-normalization characters in urlsplit() (GH-1...Steve Dower2019-04-301-4/+7
* bpo-12910: update and correct quote docstring (#2568)Jörn Hees2019-04-091-13/+20
* bpo-36216: Add check for characters in netloc that normalize to separators (G...Steve Dower2019-03-071-0/+17
* bpo-34866: Adding max_num_fields to cgi.FieldStorage (GH-9660)matthewbelisle-wf2018-10-191-3/+19
* bpo-27485: Rename and deprecate undocumented functions in urllib.parse (GH-2205)Cheryl Sabella2018-04-251-4/+99
* bpo-33034: Improve exception message when cast fails for {Parse,Split}Result....Matt Eaton2018-03-201-1/+5
* bpo-32323: urllib.parse.urlsplit() must not lowercase() IPv6 scope value (#4867)Коренберг Марк2017-12-211-4/+6
* remove a redundant lower in urllib.parse.urlsplit (#3008)Oren Milman2017-09-021-2/+1
* urllib: Simplify splithost by calling into urlparse. (#1849)postmasters2017-06-201-1/+1
* bpo-29976: urllib.parse clarify '' in scheme values. (GH-984)Senthil Kumaran2017-05-171-11/+19
* correct parse_qs and parse_qsl test case descriptions. (#968)Senthil Kumaran2017-04-041-13/+17
* bpo-16285: Update urllib quoting to RFC 3986 (#173)Ratnadeep Debnath2017-02-251-3/+6
* Issue #28992: Use bytes.fromhex().Serhiy Storchaka2016-12-211-1/+1
* Issue #25895: Merge from 3.5Berker Peksag2016-09-161-2/+3
|\
| * Issue #25895: Enable WebSocket URL schemes in urllib.parse.urljoinBerker Peksag2016-09-161-2/+3
* | merge from 3.5Senthil Kumaran2016-01-251-15/+0
|\ \ | |/
| * Remove unnecessary test case comment in urllib.parse.py. These are asserted a...Senthil Kumaran2016-01-251-15/+0
* | Issue #25822: Add docstrings to the fields of urllib.parse results.Senthil Kumaran2016-01-141-2/+65
* | Issue #20059: urllib.parse raises ValueError on all invalid ports.Robert Collins2015-08-101-2/+1
|/
* Issue #13866: add *quote_via* argument to urlencode.R David Murray2015-05-171-14/+15
* Issue #23703: Fix a regression in urljoin() introduced in 901e4e52b20a.Berker Peksag2015-04-161-2/+1
* Issue #23411: Added DefragResult, ParseResult, SplitResult, DefragResultBytes,Serhiy Storchaka2015-04-071-1/+3
* Issue #23563: Optimized utility functions in urllib.parse.Serhiy Storchaka2015-03-031-60/+28
* Merge: #23040: Clarify treatment of encoding and errors when component is bytes.R David Murray2014-12-241-4/+5
|\
| * #23040: Clarify treatment of encoding and errors when component is bytes.R David Murray2014-12-241-4/+5
* | Issue #22278: Fix urljoin problem with relative urls, a regression observedSenthil Kumaran2014-09-221-1/+5
* | Issue #22118: Switch urllib.parse to use RFC 3986 semantics for the resolutio...Antoine Pitrou2014-08-211-25/+38
* | Issue #22033: Reprs of most Python implemened classes now contain actualSerhiy Storchaka2014-07-251-1/+1
|/
* Issue #20879: Delay the initialization of encoding and decoding tables forVictor Stinner2014-03-171-2/+7
* Issue #20270: urllib.urlparse now supports empty ports.Serhiy Storchaka2014-01-181-14/+17
|\
| * Issue #20270: urllib.urlparse now supports empty ports.Serhiy Storchaka2014-01-181-14/+17
* | merge from 3.3Senthil Kumaran2013-09-051-4/+4
|\ \ | |/
| * Improve urlencode docstring. Patch by Brian Brazil.Senthil Kumaran2013-09-051-4/+4
* | Remove redundant importsRaymond Hettinger2013-04-061-9/+0
|/
* Issue #1285086: Get rid of the refcounting hack and speed upSerhiy Storchaka2013-03-141-36/+27
* Fix issue16713 - tel url parsing with paramsSenthil Kumaran2012-12-241-1/+1
* Closes #9374: add back now-unused module attributes; removing them is a backw...Georg Brandl2012-08-241-0/+10
* urllib.parse cleanup. rename keywords used as variablesSenthil Kumaran2012-06-291-7/+7
* Issue #14920: Fix the help(urllib.parse) failure on locale C terminals. Just ...Senthil Kumaran2012-05-261-1/+1