Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #1285086: Get rid of the refcounting hack and speed up urllib.unquote(). | Serhiy Storchaka | 2013-03-14 | 1 | -9/+33 |
| | |||||
* | 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 ↵ | Georg Brandl | 2012-08-24 | 1 | -0/+10 |
| | | | | backward compatibility issue, since they have a public-seeming name. | ||||
* | Issue #14036: return None when port in urlparse cross 65535 | Senthil Kumaran | 2012-05-24 | 1 | -3/+5 |
| | |||||
* | #14072: Fix parsing of tel URIs in urlparse by making the check for ports ↵ | Ezio Melotti | 2012-05-19 | 1 | -6/+6 |
| | | | | stricter. | ||||
* | Issue9374 - Generic parsing of query and fragment portion of urls for any scheme | Senthil Kumaran | 2012-05-19 | 1 | -9/+2 |
| | |||||
* | include svn+ssh as well. | Senthil Kumaran | 2011-08-03 | 1 | -1/+1 |
| | |||||
* | Fix closes issue12683 - urljoin to work with relative join of svn scheme. | Senthil Kumaran | 2011-08-03 | 1 | -1/+2 |
| | |||||
* | Issue #11467: Fix urlparse behavior when handling urls which contains scheme | Senthil Kumaran | 2011-04-15 | 1 | -5/+9 |
| | | | | specific part only digits. Patch by Santoso Wijaya. | ||||
* | Merged revisions 87329 via svnmerge from | Senthil Kumaran | 2010-12-17 | 1 | -7/+2 |
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r87329 | senthil.kumaran | 2010-12-17 12:48:45 +0800 (Fri, 17 Dec 2010) | 3 lines Fix Issue9721 - urljoin behavior when the relative url starts with ';' ........ | ||||
* | Merged revisions 83901 via svnmerge from | Senthil Kumaran | 2010-08-09 | 1 | -4/+4 |
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r83901 | senthil.kumaran | 2010-08-10 01:31:35 +0530 (Tue, 10 Aug 2010) | 3 lines Fix Issue7007 - Use percent-encoded consistently instead of URL Encoded variations. Changes in Modules. ........ | ||||
* | Fix Issue754016 - urlparse goes wrong with IP:port without scheme | Senthil Kumaran | 2010-08-04 | 1 | -5/+6 |
| | |||||
* | Merged revisions 82881 via svnmerge from | Senthil Kumaran | 2010-07-14 | 1 | -69/+0 |
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r82881 | senthil.kumaran | 2010-07-14 15:51:22 +0530 (Wed, 14 Jul 2010) | 3 lines Fix Issue5842 - Moving the tests out of urllib.parse module ........ | ||||
* | Fix Issue8653 - Docstring for urlunsplit function. | Senthil Kumaran | 2010-06-28 | 1 | -0/+5 |
| | |||||
* | Issue 8143: sync unquote in urlparse with urllib; add comment about doing so. | R. David Murray | 2010-05-25 | 1 | -10/+14 |
| | | | | | | | unquote is duplicated in the two files to avoid a circular reference. (This is fixed in Python3.) Updates keep getting made to the public unquote without fixing the urlparse one, however, so this fix syncs the two and adds a comment to both to make sure changes are applied to both. | ||||
* | Fix Issue8657 - adding git and git+ssh as know schemes. | Senthil Kumaran | 2010-05-13 | 1 | -1/+1 |
| | |||||
* | Always add space after RFC; reword paragraph | Andrew M. Kuchling | 2010-04-30 | 1 | -7/+8 |
| | |||||
* | Changed tests to only urlparse one, which was enough, addressed Ezio's comment | Senthil Kumaran | 2010-04-22 | 1 | -8/+6 |
| | | | | on Invalid url check statement and versionchanged string in docs. | ||||
* | Issue2987 - Added additional Invalid URL and changed the Invalid URL ↵ | Senthil Kumaran | 2010-04-20 | 1 | -6/+8 |
| | | | | checking code for better. | ||||
* | Fix Issue5650 - Update the RFC List in the urlparse module. | Senthil Kumaran | 2010-04-17 | 1 | -2/+25 |
| | |||||
* | Fix issue2987: RFC2732 support for urlparse (IPv6 addresses) | Senthil Kumaran | 2010-04-16 | 1 | -12/+20 |
| | |||||
* | Fix for Issue8135 - urllib.unquote to support mixed percent escapes | Senthil Kumaran | 2010-03-18 | 1 | -2/+3 |
| | |||||
* | Fix for Issue7904. urlparse.urlsplit to handle schemes in the way defined by ↵ | Senthil Kumaran | 2010-02-19 | 1 | -1/+2 |
| | | | | RFC3986 | ||||
* | Fix for bugs: Issue4675 and Issue4962. | Senthil Kumaran | 2009-03-30 | 1 | -1/+1 |
| | |||||
* | Issue 600362: Relocated parse_qs() and parse_qsl(), from the cgi module | Facundo Batista | 2008-09-03 | 1 | -1/+87 |
| | | | | | to the urlparse one. Added a PendingDeprecationWarning in the old module, it will be deprecated in the future. Docs and tests updated. | ||||
* | Issue 1432. Fixes a bug caused because of the evolution | Facundo Batista | 2008-08-14 | 1 | -3/+12 |
| | | | | | of the RFC that describes the behaviour. Note that we now have the same behaviour than the current browsers. | ||||
* | Silence some SyntaxWarnings for tuple unpacking in a parameter list for | Brett Cannon | 2008-08-03 | 1 | -2/+4 |
| | | | | urlparse when run under -3. | ||||
* | #1726198: replace while 1: fp.readline() with file iteration. | Georg Brandl | 2008-01-21 | 1 | -3/+1 |
| | |||||
* | Speed-up and simplify code urlparse's result objects. | Raymond Hettinger | 2008-01-11 | 1 | -52/+6 |
| | |||||
* | Patch #1637: fix urlparse for URLs like 'http://x.com?arg=/foo'. | Guido van Rossum | 2008-01-05 | 1 | -7/+6 |
| | | | | Fix by John Nagle. | ||||
* | Patch #1698 by Senthil: allow '@' in username when parsed by urlparse.py. | Guido van Rossum | 2008-01-05 | 1 | -4/+4 |
| | |||||
* | Fix issue #1313119: urlparse "caches" parses regardless of encoding | Alexandre Vassalotti | 2007-12-13 | 1 | -1/+1 |
| | |||||
* | Patch #624325: urlparse.urlparse() and urlparse.urlsplit() results | Fred Drake | 2006-04-01 | 1 | -10/+115 |
| | | | | now sport attributes that provide access to the parts of the result. | ||||
* | add support for the sips: scheme (identical to sip: except for scheme name) | Fred Drake | 2006-04-01 | 1 | -3/+3 |
| | |||||
* | Bug #1407902: Added support for sftp:// URIs to urlparse. | Georg Brandl | 2006-01-20 | 1 | -11/+11 |
| | |||||
* | add support for svn: and svn+ssh: URL schemes to urlparse | Fred Drake | 2005-07-29 | 1 | -1/+2 |
| | |||||
* | Patch #712317: In URLs such as http://www.example.com?query=spam, treat '?' as | Johannes Gijsbers | 2005-01-09 | 1 | -13/+12 |
| | | | | | | a delimiter. Previously, the 'network location' (<authority> in RFC 2396) would become 'www.example.com?query=spam', while RFC 2396 does not allow a '?' in <authority>. See bug #548176 for further discussion. | ||||
* | Use cStringIO where available. | Raymond Hettinger | 2004-12-31 | 1 | -2/+5 |
| | |||||
* | rsync is now a recognized protocol that uses "netloc" (i.e. specifies a network | Brett Cannon | 2004-06-29 | 1 | -1/+1 |
| | | | | | | location) in its addressing. Closes bug #981299. | ||||
* | Revert last change. | Raymond Hettinger | 2004-05-07 | 1 | -12/+12 |
| | |||||
* | Use sets instead of lists for membership testing | Raymond Hettinger | 2004-05-06 | 1 | -12/+12 |
| | |||||
* | See rev. 1.42 for log message | Brett Cannon | 2003-10-12 | 1 | -6/+2 |
| | |||||
* | Patch #712124: Remove obsolete comment. | Martin v. Löwis | 2003-03-30 | 1 | -1/+0 |
| | |||||
* | Revert change 1.37. | Raymond Hettinger | 2003-01-07 | 1 | -12/+12 |
| | | | | | The nanoseconds saved by using dict.fromkeys aren't worth the loss in clarity. Linear searches live on. | ||||
* | * add mms (windows media) as another scheme | Skip Montanaro | 2003-01-06 | 1 | -19/+15 |
| | | | | * reformat schemes to 80 columns | ||||
* | Used dictionaries rather than lists for membership testing. | Raymond Hettinger | 2003-01-06 | 1 | -12/+12 |
| | |||||
* | SF feature #618024, urlparse fails on imap:// | Neal Norwitz | 2003-01-06 | 1 | -5/+5 |
| | |||||
* | Added missing entries to __all__. | Fred Drake | 2002-10-16 | 1 | -1/+2 |
| | |||||
* | Fix for 1.33: urlsplit() should only add '//' if scheme != ''. | Guido van Rossum | 2002-10-14 | 1 | -1/+1 |
| | | | | Will add test and backport. | ||||
* | Fix SF # 591713, Fix "file:" URL to have right no. of /'s, by Bruce Atherton | Neal Norwitz | 2002-09-25 | 1 | -1/+1 |
| | | | | | | Add a test too. urljoin() would make file:/tmp/foo instead of file:///tmp/foo Bugfix candidate, I will backport. |