| Commit message (Expand) | Author | Age | Files | Lines |
* | Issue #28992: Use bytes.fromhex(). | Serhiy Storchaka | 2016-12-21 | 1 | -1/+1 |
* | Issue #25895: Merge from 3.5 | Berker Peksag | 2016-09-16 | 1 | -4/+66 |
|\ |
|
| * | merge from 3.5 | Senthil Kumaran | 2016-01-25 | 1 | -4/+66 |
| |\ |
|
| | * | Issue #25822: Add docstrings to the fields of urllib.parse results. | Senthil Kumaran | 2016-01-14 | 1 | -2/+65 |
| | * | Issue #20059: urllib.parse raises ValueError on all invalid ports. | Robert Collins | 2015-08-10 | 1 | -2/+1 |
* | | | Issue #25895: Enable WebSocket URL schemes in urllib.parse.urljoin | Berker Peksag | 2016-09-16 | 1 | -2/+3 |
|/ / |
|
* | | Remove unnecessary test case comment in urllib.parse.py. These are asserted a... | Senthil Kumaran | 2016-01-25 | 1 | -15/+0 |
|/ |
|
* | Issue #13866: add *quote_via* argument to urlencode. | R David Murray | 2015-05-17 | 1 | -14/+15 |
* | Issue #23703: Fix a regression in urljoin() introduced in 901e4e52b20a. | Berker Peksag | 2015-04-16 | 1 | -2/+1 |
* | Issue #23411: Added DefragResult, ParseResult, SplitResult, DefragResultBytes, | Serhiy Storchaka | 2015-04-07 | 1 | -1/+3 |
* | Issue #23563: Optimized utility functions in urllib.parse. | Serhiy Storchaka | 2015-03-03 | 1 | -60/+28 |
* | Merge: #23040: Clarify treatment of encoding and errors when component is bytes. | R David Murray | 2014-12-24 | 1 | -4/+5 |
|\ |
|
| * | #23040: Clarify treatment of encoding and errors when component is bytes. | R David Murray | 2014-12-24 | 1 | -4/+5 |
* | | Issue #22278: Fix urljoin problem with relative urls, a regression observed | Senthil Kumaran | 2014-09-22 | 1 | -1/+5 |
* | | Issue #22118: Switch urllib.parse to use RFC 3986 semantics for the resolutio... | Antoine Pitrou | 2014-08-21 | 1 | -25/+38 |
* | | Issue #22033: Reprs of most Python implemened classes now contain actual | Serhiy Storchaka | 2014-07-25 | 1 | -1/+1 |
|/ |
|
* | Issue #20879: Delay the initialization of encoding and decoding tables for | Victor Stinner | 2014-03-17 | 1 | -2/+7 |
* | Issue #20270: urllib.urlparse now supports empty ports. | Serhiy Storchaka | 2014-01-18 | 1 | -9/+0 |
|\ |
|
| * | merge from 3.3 | Senthil Kumaran | 2013-09-05 | 1 | -9/+0 |
| |\ |
|
| | * | Remove redundant imports | Raymond Hettinger | 2013-04-06 | 1 | -9/+0 |
* | | | Issue #20270: urllib.urlparse now supports empty ports. | Serhiy Storchaka | 2014-01-18 | 1 | -14/+17 |
|/ / |
|
* | | Improve urlencode docstring. Patch by Brian Brazil. | Senthil Kumaran | 2013-09-05 | 1 | -4/+4 |
|/ |
|
* | Issue #1285086: Get rid of the refcounting hack and speed up | Serhiy Storchaka | 2013-03-14 | 1 | -36/+27 |
* | Fix issue16713 - tel url parsing with params | Senthil Kumaran | 2012-12-24 | 1 | -1/+1 |
* | Closes #9374: add back now-unused module attributes; removing them is a backw... | Georg Brandl | 2012-08-24 | 1 | -0/+10 |
* | urllib.parse cleanup. rename keywords used as variables | Senthil Kumaran | 2012-06-29 | 1 | -7/+7 |
* | Issue #14920: Fix the help(urllib.parse) failure on locale C terminals. Just ... | Senthil Kumaran | 2012-05-26 | 1 | -1/+1 |
* | Issue #14036: return None when port in urlparse cross 65535 | Senthil Kumaran | 2012-05-24 | 1 | -0/+3 |
* | #14072: Fix parsing of tel URIs in urlparse by making the check for ports str... | Ezio Melotti | 2012-05-19 | 1 | -6/+6 |
* | Issue9374 - Generic parsing of query and fragment portion of urls for any scheme | Senthil Kumaran | 2012-05-19 | 1 | -9/+2 |
* | Fix closes issue12683 - urljoin to work with relative join of svn scheme. | Senthil Kumaran | 2011-08-03 | 1 | -1/+2 |
* | merge from 3.1 | Senthil Kumaran | 2011-04-15 | 1 | -56/+234 |
|\ |
|
| * | Add encoding and errors arguments to urllib.parse_qs() and urllib.parse_qsl() | Victor Stinner | 2011-01-14 | 1 | -5/+19 |
| * | Fix Issue9721 - urljoin behavior when the relative url starts with ';' | Senthil Kumaran | 2010-12-17 | 1 | -7/+2 |
| * | Fix spelling of Jamie Zawinski's surname in urllib.parse docstring (issue 10606) | David Malcolm | 2010-12-02 | 1 | -1/+1 |
| * | Issue 9873: the URL parsing functions now accept ASCII encoded byte sequences... | Nick Coghlan | 2010-11-30 | 1 | -55/+208 |
| * | Fix Issue4493 - urllib2 adds '/' to the path component of url, when it does not | Senthil Kumaran | 2010-11-22 | 1 | -1/+6 |
| * | Fix Issue2244 - urllib unquotes user and password info multiple times - Patch... | Senthil Kumaran | 2010-11-18 | 1 | -1/+1 |
| * | Fix issue10192 - add urlencode to urllib.parse.__all__ | Senthil Kumaran | 2010-10-25 | 1 | -2/+2 |
| * | Silence the BytesWarning, due to patch r83294 for #9301 | Florent Xicluna | 2010-08-14 | 1 | -1/+3 |
| * | Fix Issue7007 - Use percent-encoded consistently instead of URL Encoded vari... | Senthil Kumaran | 2010-08-09 | 1 | -4/+4 |
| * | Fix Issue754016 - urlparse goes wrong with IP:port without scheme | Senthil Kumaran | 2010-08-04 | 1 | -5/+6 |
| * | Fix an oversight in r83294. unquote() should reject bytes. Issue #9301. | Florent Xicluna | 2010-07-31 | 1 | -1/+1 |
| * | Fix issue9301 - handle unquote({}) kind of case. | Senthil Kumaran | 2010-07-30 | 1 | -6/+2 |
| * | Fix Issue9301 - urllib.parse.unquote and unquote_to_byte to raise TypeError f... | Senthil Kumaran | 2010-07-19 | 1 | -0/+4 |
| * | Fix Issue5842 - Moving the tests out of urllib.parse module | Senthil Kumaran | 2010-07-14 | 1 | -64/+0 |
| * | Fix Issue5468 - urlencode to handle bytes and other alternate encodings. | Senthil Kumaran | 2010-07-03 | 1 | -8/+30 |
| * | Merged revisions 82324 via svnmerge from | Senthil Kumaran | 2010-06-28 | 1 | -0/+5 |
| * | Merged revisions 80605-80609,80642-80646,80651-80652,80674,80684-80686,80748,... | Benjamin Peterson | 2010-06-27 | 1 | -7/+8 |
| * | Inadvertently removed part of the comment in r81271. | Florent Xicluna | 2010-05-17 | 1 | -1/+1 |