summaryrefslogtreecommitdiff
path: root/Lib/urlparse.py
Commit message (Expand)AuthorAgeFilesLines
* Issue #11467: Fix urlparse behavior when handling urls which contains schemeSenthil Kumaran2011-04-151-5/+9
* Merged revisions 87329 via svnmerge fromSenthil Kumaran2010-12-171-7/+2
* Merged revisions 83901 via svnmerge fromSenthil Kumaran2010-08-091-4/+4
* Fix Issue754016 - urlparse goes wrong with IP:port without schemeSenthil Kumaran2010-08-041-5/+6
* Merged revisions 82881 via svnmerge fromSenthil Kumaran2010-07-141-69/+0
* Fix Issue8653 - Docstring for urlunsplit function.Senthil Kumaran2010-06-281-0/+5
* Issue 8143: sync unquote in urlparse with urllib; add comment about doing so.R. David Murray2010-05-251-10/+14
* Fix Issue8657 - adding git and git+ssh as know schemes.Senthil Kumaran2010-05-131-1/+1
* Always add space after RFC; reword paragraphAndrew M. Kuchling2010-04-301-7/+8
* Changed tests to only urlparse one, which was enough, addressed Ezio's commentSenthil Kumaran2010-04-221-8/+6
* Issue2987 - Added additional Invalid URL and changed the Invalid URL checking...Senthil Kumaran2010-04-201-6/+8
* Fix Issue5650 - Update the RFC List in the urlparse module.Senthil Kumaran2010-04-171-2/+25
* Fix issue2987: RFC2732 support for urlparse (IPv6 addresses)Senthil Kumaran2010-04-161-12/+20
* Fix for Issue8135 - urllib.unquote to support mixed percent escapesSenthil Kumaran2010-03-181-2/+3
* Fix for Issue7904. urlparse.urlsplit to handle schemes in the way defined by ...Senthil Kumaran2010-02-191-1/+2
* Fix for bugs: Issue4675 and Issue4962.Senthil Kumaran2009-03-301-1/+1
* Issue 600362: Relocated parse_qs() and parse_qsl(), from the cgi moduleFacundo Batista2008-09-031-1/+87
* Issue 1432. Fixes a bug caused because of the evolutionFacundo Batista2008-08-141-3/+12
* Silence some SyntaxWarnings for tuple unpacking in a parameter list forBrett Cannon2008-08-031-2/+4
* #1726198: replace while 1: fp.readline() with file iteration.Georg Brandl2008-01-211-3/+1
* Speed-up and simplify code urlparse's result objects.Raymond Hettinger2008-01-111-52/+6
* Patch #1637: fix urlparse for URLs like 'http://x.com?arg=/foo'.Guido van Rossum2008-01-051-7/+6
* Patch #1698 by Senthil: allow '@' in username when parsed by urlparse.py.Guido van Rossum2008-01-051-4/+4
* Fix issue #1313119: urlparse "caches" parses regardless of encodingAlexandre Vassalotti2007-12-131-1/+1
* Patch #624325: urlparse.urlparse() and urlparse.urlsplit() resultsFred Drake2006-04-011-10/+115
* add support for the sips: scheme (identical to sip: except for scheme name)Fred Drake2006-04-011-3/+3
* Bug #1407902: Added support for sftp:// URIs to urlparse.Georg Brandl2006-01-201-11/+11
* add support for svn: and svn+ssh: URL schemes to urlparseFred Drake2005-07-291-1/+2
* Patch #712317: In URLs such as http://www.example.com?query=spam, treat '?' asJohannes Gijsbers2005-01-091-13/+12
* Use cStringIO where available.Raymond Hettinger2004-12-311-2/+5
* rsync is now a recognized protocol that uses "netloc" (i.e. specifies a networkBrett Cannon2004-06-291-1/+1
* Revert last change.Raymond Hettinger2004-05-071-12/+12
* Use sets instead of lists for membership testingRaymond Hettinger2004-05-061-12/+12
* See rev. 1.42 for log messageBrett Cannon2003-10-121-6/+2
* Patch #712124: Remove obsolete comment.Martin v. Löwis2003-03-301-1/+0
* Revert change 1.37.Raymond Hettinger2003-01-071-12/+12
* * add mms (windows media) as another schemeSkip Montanaro2003-01-061-19/+15
* Used dictionaries rather than lists for membership testing.Raymond Hettinger2003-01-061-12/+12
* SF feature #618024, urlparse fails on imap://Neal Norwitz2003-01-061-5/+5
* Added missing entries to __all__.Fred Drake2002-10-161-1/+2
* Fix for 1.33: urlsplit() should only add '//' if scheme != ''.Guido van Rossum2002-10-141-1/+1
* Fix SF # 591713, Fix "file:" URL to have right no. of /'s, by Bruce AthertonNeal Norwitz2002-09-251-1/+1
* amk's fix attached toMichael W. Hudson2002-03-181-1/+3
* Fix parsing of parameters from a URL; urlparse() did not check that it onlyFred Drake2001-11-161-34/+46
* Remove unused variableAndrew M. Kuchling2001-08-131-1/+1
* final round of __all__ lists (I hope) - skipped urllib2 because Moshe may beSkip Montanaro2001-03-011-0/+2
* Whitespace normalization. Top level of Lib now fixed-point for reindent.py!Tim Peters2001-01-151-185/+185
* urlunparse(): Do not add a leading slash to the path if it is empty.Fred Drake2001-01-051-6/+12
* Be explicit about scheme_chars -- string.letters is locale dependentGuido van Rossum2000-12-191-20/+18
* Pekka Pessi <Pekka.Pessi@nokia.com>:Fred Drake2000-06-201-3/+3