summaryrefslogtreecommitdiffstats
path: root/Lib/urllib.py
Commit message (Expand)AuthorAgeFilesLines
* Oops! Of course, Tim is right -- when the item is not a hex number,Guido van Rossum1998-06-291-2/+2
* Speed-up unquote(), inspired by post from Daniel Walton.Guido van Rossum1998-06-281-18/+16
* Rewrite the (test) main program so that when used as a script, it canGuido van Rossum1998-06-251-5/+29
* Use the getpass module instead of having platform-specific echo on/offGuido van Rossum1998-06-121-18/+5
* Patches to make the proxy code work again. (Why does that always breakGuido van Rossum1998-05-051-2/+3
* Feeble attempt at making urlopen more robust -- don't call splituser()Guido van Rossum1998-04-271-2/+6
* Oops -- remove some debug print statements!Guido van Rossum1998-04-111-4/+0
* Oops, pulled over by the tab police :-)Guido van Rossum1998-04-031-9/+9
* Change by Sjoerd (with minor reformatting):Guido van Rossum1998-04-031-4/+18
* A few lines were indented using spaces instead of tabs -- fix them.Guido van Rossum1998-03-301-8/+8
* A few lines were indented using spaces instead of tabs -- fix them.Guido van Rossum1998-03-261-64/+65
* Added support for "data" URL, by Sjoerd Mullender.Guido van Rossum1998-03-121-0/+40
* Fix a horrible race condition -- various routines were storing theGuido van Rossum1998-02-131-9/+7
* Two suggested features by Sjoerd:Guido van Rossum1998-02-051-6/+7
* (1) Use matchobj.groups(), not matchbj.group() to get all groups.Guido van Rossum1998-02-051-4/+8
* Fix bad new bug in ftp code -- the test for existing file using NLSTGuido van Rossum1998-01-191-0/+4
* Solve two annoying problems with ftp URLs for Jack: when repeatedGuido van Rossum1997-12-281-0/+14
* When a port is specified in an ftp:// URL, must convert it to a number!Guido van Rossum1997-12-021-0/+2
* Assert that the proxies object passed in to the URLopener constructorGuido van Rossum1997-11-181-0/+1
* This should hopefully finally clean up the remaining __del__ relatedGuido van Rossum1997-10-271-9/+11
* splitpasswd(): The parameter is named "user", not "host".Fred Drake1997-10-141-1/+1
* Use sys.exc_info() where needed.Guido van Rossum1997-09-291-44/+106
* Initialize self.__tempfiles to [] in the constructor (else it remainsGuido van Rossum1997-09-081-0/+1
* One patch from Sjoerd and one from Jack.Guido van Rossum1997-09-031-7/+14
* Explicitly close the socket and temp file in URLopener.retrieve(), soGuido van Rossum1997-08-261-0/+2
* Interpret three slashes in file: URL as local file (for Netscape onGuido van Rossum1997-08-201-4/+4
* Clear the ftp cache when it contains more than 10 entries.Guido van Rossum1997-06-061-2/+21
* Catch *all* errors that ftplib can raise (ftplib.all_errors) ratherGuido van Rossum1997-06-061-8/+10
* Add Host: header to URL request.Guido van Rossum1997-06-031-1/+5
* lowercase proxies env variables, for Windows.Guido van Rossum1997-05-281-0/+1
* spliturl() should not throw away everything past first newlineGuido van Rossum1997-04-161-2/+4
* (Jack+Guido:) interpret ../ in basejoin() according to RFC1808.Guido van Rossum1997-04-111-0/+7
* Open files in binary mode.Guido van Rossum1997-04-111-4/+4
* Fix two small bugs with proxies.Guido van Rossum1997-04-021-1/+2
* Put a new, more useful, set of references in the leading comment.Guido van Rossum1997-02-101-6/+13
* Move the 'import os' in URLopener.cleanup() to inside the blockGuido van Rossum1997-01-301-1/+1
* Added quote_plus() and unquote_plus(), to do space/plus substitutionsGuido van Rossum1996-12-131-0/+14
* Add optional data argument to urlopen() and open_http(), to trigger POST.Guido van Rossum1996-12-101-9/+26
* Added safeguard against failure in __del__.Guido van Rossum1996-11-271-0/+2
* When re-raising an exception raised by a module used internally asGuido van Rossum1996-11-201-3/+5
* Fix the way the Authorization header is sent (how could this have worked?).Guido van Rossum1996-11-111-1/+1
* Fix another case where...Guido van Rossum1996-10-221-0/+1
* Fix some cases where self.openedurl wasn't set.Guido van Rossum1996-10-101-2/+3
* One fix by sjoerd and one suggested by him. Bumped __version__ to 1.5.Guido van Rossum1996-09-101-9/+24
* Bump exposed __version__ to 1.4.Guido van Rossum1996-08-261-6/+9
* Slightly faster (un)quoting.Guido van Rossum1996-08-261-8/+8
* add nturl2pathGuido van Rossum1996-06-261-0/+2
* Change defn of splitnport() to only accept valid digit strings.Guido van Rossum1996-06-171-10/+9
* Added splitnport(), which is like splitport() but returns a numeric port,Guido van Rossum1996-06-131-0/+17
* Support optional filename argument for retrieve() and urlretrieve(),Guido van Rossum1996-06-111-8/+12