summaryrefslogtreecommitdiff
path: root/Lib/urlparse.py
Commit message (Expand)AuthorAgeFilesLines
* 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
* Anthony Baxter <anthony@interlink.com.au>:Fred Drake2000-04-141-4/+4
* Some cleanup -- don't use splitfields/joinfields, standardizeGuido van Rossum2000-04-101-19/+17
* The third and final doc-string sweep by Ka-Ping Yee.Guido van Rossum2000-02-041-13/+16
* No need to import find(). (Andrew Dalke & kjpylint)Guido van Rossum1999-05-031-1/+1
* Sjoerd Mullender writes:Guido van Rossum1999-03-181-2/+2
* Delete non-standard-conforming code in urljoin() that would use theGuido van Rossum1999-03-171-12/+0
* Steve Clift pointed out that 'file' allows a netloc.Guido van Rossum1999-02-221-0/+1
* Fixed bug in the common-case code for HTTP URLs; it would lose the query,Andrew M. Kuchling1999-01-061-4/+7
* Add XXX comment about a test that doesn't seem right -- no time toGuido van Rossum1998-12-211-0/+1
* Easy optimizations of urlparse for the common case of parsing an http URL.Jeremy Hylton1998-09-021-8/+33
* fix typo in keyword argument 'allow_frament' should be 'allow_fragment'Jeremy Hylton1998-08-251-6/+6
* Add Gopher to list of protocols that support query strings.Guido van Rossum1998-01-191-0/+1
* Patch my Marc Lemburg to fix urljoin("/a", "..") and urljoin("/a", "..#1").Guido van Rossum1997-12-031-1/+3
* After some discussion with Jeremy and Fred, decided to limit theGuido van Rossum1997-07-141-1/+1
* Test urlparse cache with try/except instead of has_key.Guido van Rossum1997-07-111-1/+3
* Added characteristics of shttp, https, and snews.Guido van Rossum1997-01-021-3/+12
* Crude but effective hack to clear the parser cache every so often.Guido van Rossum1996-12-271-0/+4
* optimizations due to Fred Drake; added urldefrag() functionGuido van Rossum1996-05-281-18/+35
* added hdl protocol propertiesGuido van Rossum1996-05-281-3/+3
* Update reference (it's now RFC 1808); added http to list of protocolsGuido van Rossum1996-03-291-9/+3
* remove file: from list of protocols taking hostGuido van Rossum1995-08-101-1/+1
* subtle changes to relative rurl joinsGuido van Rossum1995-08-041-3/+3
* Add hacks for switching protocol and path but leaving host unchangedGuido van Rossum1994-12-301-0/+12
* New tty/pty modules by Steen; new urlparser.Guido van Rossum1994-09-121-0/+195