summaryrefslogtreecommitdiffstats
path: root/Lib/urllib.py
Commit message (Expand)AuthorAgeFilesLines
* Patch #100873 - Use registry to find proxies for urllib on Win32Mark Hammond2000-07-261-13/+61
* Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in eitherThomas Wouters2000-07-161-1/+1
* Fix bug #314, reported by Craig Allen <cba@mediaone.net>:Fred Drake2000-07-011-1/+1
* Comment out an apparent debug printAndrew M. Kuchling2000-06-101-1/+1
* Fix a problem reported by Oleg Broytmann, who complains that veryGuido van Rossum2000-05-241-1/+1
* Fix to previous patch: send the request data when it's providedAndrew M. Kuchling2000-04-241-0/+2
* Fixed bug reported by JP Calderone: https:// URL's didn't work.Andrew M. Kuchling2000-04-231-2/+8
* The third and final doc-string sweep by Ka-Ping Yee.Guido van Rossum2000-02-041-79/+108
* Sjoerd Mullender writes:Guido van Rossum2000-02-011-5/+14
* OpenSSL support. This is based on patches for a version of SSLeay byGuido van Rossum1999-12-071-5/+57
* Patches by Michael Reilly to correctly deal with ftp URLs of the formGuido van Rossum1999-08-181-0/+1
* Sjoerd Mullender:Guido van Rossum1999-07-011-1/+1
* Sjoerd Mullender writes:Guido van Rossum1999-06-241-2/+8
* Updated lagging version#. Also added some comments about how quote()Guido van Rossum1999-06-091-1/+3
* Hack so that if a 302 or 301 redirect contains a relative URL, theGuido van Rossum1999-03-291-0/+2
* Yet another patch by Sjoerd Mullender:Guido van Rossum1999-03-151-2/+2
* From: Sjoerd MullenderGuido van Rossum1999-03-121-9/+2
* open_http also had the 'data is None' test backwards. don't call with theGuido van Rossum1999-03-091-3/+2
* http_error had the 'data is None' test backwards. don't call with theJeremy Hylton1999-02-251-4/+3
* change indentation from 8 spaces to 4 spacesJeremy Hylton1999-02-251-878/+859
* pleasing the tabnannyJeremy Hylton1999-02-251-11/+11
* When performing a POST request, i.e. when the second argument toJeremy Hylton1999-02-241-11/+27
* As Des Barry points out, we need to call pathname2url(file) in twoGuido van Rossum1999-02-221-2/+2
* In open_ftp(), check that retrlen is not None before using it in a %d format!Guido van Rossum1999-02-161-1/+1
* Sjoerd Mullender:Guido van Rossum1998-12-181-6/+16
* Changes by Eric Raymond:Guido van Rossum1998-09-281-14/+32
* On the Mac, use Internet Config to find the proxies (Jack Jansen).Guido van Rossum1998-08-061-15/+49
* Speed up the implementation of quote().Guido van Rossum1998-07-221-8/+17
* 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