| Commit message (Expand) | Author | Age | Files | Lines |
* | Fix a horrible race condition -- various routines were storing the | Guido van Rossum | 1998-02-13 | 1 | -9/+7 |
|
|
* | Two suggested features by Sjoerd: | Guido van Rossum | 1998-02-05 | 1 | -6/+7 |
|
|
* | (1) Use matchobj.groups(), not matchbj.group() to get all groups. | Guido van Rossum | 1998-02-05 | 1 | -4/+8 |
|
|
* | Fix bad new bug in ftp code -- the test for existing file using NLST | Guido van Rossum | 1998-01-19 | 1 | -0/+4 |
|
|
* | Solve two annoying problems with ftp URLs for Jack: when repeated | Guido van Rossum | 1997-12-28 | 1 | -0/+14 |
|
|
* | When a port is specified in an ftp:// URL, must convert it to a number! | Guido van Rossum | 1997-12-02 | 1 | -0/+2 |
|
|
* | Assert that the proxies object passed in to the URLopener constructor | Guido van Rossum | 1997-11-18 | 1 | -0/+1 |
|
|
* | This should hopefully finally clean up the remaining __del__ related | Guido van Rossum | 1997-10-27 | 1 | -9/+11 |
|
|
* | splitpasswd(): The parameter is named "user", not "host". | Fred Drake | 1997-10-14 | 1 | -1/+1 |
|
|
* | Use sys.exc_info() where needed. | Guido van Rossum | 1997-09-29 | 1 | -44/+106 |
|
|
* | Initialize self.__tempfiles to [] in the constructor (else it remains | Guido van Rossum | 1997-09-08 | 1 | -0/+1 |
|
|
* | One patch from Sjoerd and one from Jack. | Guido van Rossum | 1997-09-03 | 1 | -7/+14 |
|
|
* | Explicitly close the socket and temp file in URLopener.retrieve(), so | Guido van Rossum | 1997-08-26 | 1 | -0/+2 |
|
|
* | Interpret three slashes in file: URL as local file (for Netscape on | Guido van Rossum | 1997-08-20 | 1 | -4/+4 |
|
|
* | Clear the ftp cache when it contains more than 10 entries. | Guido van Rossum | 1997-06-06 | 1 | -2/+21 |
|
|
* | Catch *all* errors that ftplib can raise (ftplib.all_errors) rather | Guido van Rossum | 1997-06-06 | 1 | -8/+10 |
|
|
* | Add Host: header to URL request. | Guido van Rossum | 1997-06-03 | 1 | -1/+5 |
|
|
* | lowercase proxies env variables, for Windows. | Guido van Rossum | 1997-05-28 | 1 | -0/+1 |
|
|
* | spliturl() should not throw away everything past first newline | Guido van Rossum | 1997-04-16 | 1 | -2/+4 |
|
|
* | (Jack+Guido:) interpret ../ in basejoin() according to RFC1808. | Guido van Rossum | 1997-04-11 | 1 | -0/+7 |
|
|
* | Open files in binary mode. | Guido van Rossum | 1997-04-11 | 1 | -4/+4 |
|
|
* | Fix two small bugs with proxies. | Guido van Rossum | 1997-04-02 | 1 | -1/+2 |
|
|
* | Put a new, more useful, set of references in the leading comment. | Guido van Rossum | 1997-02-10 | 1 | -6/+13 |
|
|
* | Move the 'import os' in URLopener.cleanup() to inside the block | Guido van Rossum | 1997-01-30 | 1 | -1/+1 |
|
|
* | Added quote_plus() and unquote_plus(), to do space/plus substitutions | Guido van Rossum | 1996-12-13 | 1 | -0/+14 |
|
|
* | Add optional data argument to urlopen() and open_http(), to trigger POST. | Guido van Rossum | 1996-12-10 | 1 | -9/+26 |
|
|
* | Added safeguard against failure in __del__. | Guido van Rossum | 1996-11-27 | 1 | -0/+2 |
|
|
* | When re-raising an exception raised by a module used internally as | Guido van Rossum | 1996-11-20 | 1 | -3/+5 |
|
|
* | Fix the way the Authorization header is sent (how could this have worked?). | Guido van Rossum | 1996-11-11 | 1 | -1/+1 |
|
|
* | Fix another case where... | Guido van Rossum | 1996-10-22 | 1 | -0/+1 |
|
|
* | Fix some cases where self.openedurl wasn't set. | Guido van Rossum | 1996-10-10 | 1 | -2/+3 |
|
|
* | One fix by sjoerd and one suggested by him. Bumped __version__ to 1.5. | Guido van Rossum | 1996-09-10 | 1 | -9/+24 |
|
|
* | Bump exposed __version__ to 1.4. | Guido van Rossum | 1996-08-26 | 1 | -6/+9 |
|
|
* | Slightly faster (un)quoting. | Guido van Rossum | 1996-08-26 | 1 | -8/+8 |
|
|
* | add nturl2path | Guido van Rossum | 1996-06-26 | 1 | -0/+2 |
|
|
* | Change defn of splitnport() to only accept valid digit strings. | Guido van Rossum | 1996-06-17 | 1 | -10/+9 |
|
|
* | Added splitnport(), which is like splitport() but returns a numeric port, | Guido van Rossum | 1996-06-13 | 1 | -0/+17 |
|
|
* | Support optional filename argument for retrieve() and urlretrieve(), | Guido van Rossum | 1996-06-11 | 1 | -8/+12 |
|
|
* | move mac url2path conversion to separate module | Guido van Rossum | 1996-03-21 | 1 | -50/+1 |
|
|
* | Added proxy handling; upped version. | Guido van Rossum | 1996-03-20 | 1 | -8/+44 |
|
|
* | Try to normalize urls referring to local files (code copied from posixpath) | Jack Jansen | 1996-02-14 | 1 | -3/+15 |
|
|
* | speed up unquote() by using atoi() instead of eval() | Guido van Rossum | 1996-01-26 | 1 | -1/+1 |
|
|
* | Added pathname2url and url2pathname methods (only correct for unix and | Jack Jansen | 1995-12-21 | 1 | -7/+32 |
|
|
* | Fixed local file access for macintosh | Jack Jansen | 1995-12-15 | 1 | -2/+17 |
|
|
* | Fixed basejoin. There were two main problems: | Sjoerd Mullender | 1995-11-10 | 1 | -13/+37 |
|
|
* | support overriding how to open unknown url types | Guido van Rossum | 1995-08-29 | 1 | -13/+13 |
|
|
* | Removed addbase.__del__ because it can't work. | Sjoerd Mullender | 1995-08-15 | 1 | -2/+6 |
|
|
* | changed version :-) | Guido van Rossum | 1995-08-10 | 1 | -1/+1 |
|
|
* | use mimetools; add error handling and authentication | Guido van Rossum | 1995-08-04 | 1 | -12/+129 |
|
|
* | add User-agent hdr; read and close the file upon http error | Guido van Rossum | 1995-06-22 | 1 | -3/+14 |
|
|