summaryrefslogtreecommitdiffstats
path: root/Lib/urllib.py
Commit message (Expand)AuthorAgeFilesLines
* Use cStringIO where available.Raymond Hettinger2004-12-311-8/+23
* Added a usegmt flag to email.Utils.formatdate - this allows it to beAnthony Baxter2004-10-111-2/+2
* Whitespace normalization, via reindent.py.Tim Peters2004-07-181-1/+1
* Fix for #779167: use InternetConfig proxy settings on MacOSX (in additionJack Jansen2004-07-161-2/+5
* Replace sequential split/join calls on strings with a single replace call.Brett Cannon2004-03-231-6/+2
* Replace code in urllib for basejoin (undocumented) with urlparse.urljoin .Brett Cannon2004-03-231-59/+2
* Replace backticks with repr() or "%r"Walter Dörwald2004-02-121-5/+5
* [Bug #776542] open_https() generates a bad Authorization header because it ca...Andrew M. Kuchling2003-08-291-1/+1
* More fixes according to SF 549151:Guido van Rossum2003-05-161-4/+8
* SF Patch 549151: urllib2 POSTs on redirectRaymond Hettinger2003-04-241-0/+4
* Fix docstring for URLOpener.retrieve() in regards to opening a local fileBrett Cannon2003-04-241-1/+1
* SF 698520: Iterator for urllib.URLOpenerRaymond Hettinger2003-03-091-0/+4
* Get rid of many apply() calls.Guido van Rossum2003-02-271-4/+4
* Use fdopen() to create file from fd.Jeremy Hylton2002-10-111-1/+1
* When testing for localhost/ first map to lower case. Spotted by Skip.Jack Jansen2002-09-121-1/+1
* Treat file://localhost/ as local too (same as file:/ and file:///).Jack Jansen2002-09-121-1/+1
* Modify splituser() method to allow an @ in the userinfo field.Raymond Hettinger2002-08-181-1/+1
* Massive changes from SF 589982 (tempfile.py rewrite, by ZackGuido van Rossum2002-08-091-3/+5
* Fix SF #565414, FancyURLopener() needs to support **kwargsNeal Norwitz2002-06-111-2/+2
* Remove uses of the string and types modules:Walter Dörwald2002-06-031-8/+9
* Replaced boolean tests with is None.Raymond Hettinger2002-06-021-5/+5
* SF 563203. Replaced 'has_key()' with 'in'.Raymond Hettinger2002-06-011-11/+11
* Don't require Unicode support.Guido van Rossum2002-05-241-2/+9
* Fix from SF bug #541980 (Jacques A. Vidrine).Guido van Rossum2002-04-151-1/+4
* Support manual proxy configuration for simple urlopen() operations.Fred Drake2002-04-041-5/+10
* Fix for a bug in the fix for SF bug 503031. This time the OP verifiedGuido van Rossum2002-04-021-2/+2
* Hopeful fix for SF bug 503031: urllib.py: open_http() host problem.Guido van Rossum2002-03-311-1/+5
* time and socket were already imported in the module, no need to re-importNeal Norwitz2002-03-261-3/+1
* use stat attributes instead of tuple entriesWalter Dörwald2002-03-221-3/+2
* To make 'urllib.py -t' run again, change FTP URL to a file that actuallyAndrew M. Kuchling2002-03-181-1/+1
* SF #515024 remove unused variableNeal Norwitz2002-02-111-1/+0
* SF patch #490515 (Joe A) urllib.open_https() protocol issueGuido van Rossum2001-12-081-1/+1
* Added missing parameter in call to http_error_default();Fred Drake2001-10-131-1/+1
* Add content-type header to ftp URLs (SF patch #454553)Jeremy Hylton2001-08-271-8/+2
* SF patch #454553 by Walter Dörwald: auto-guess content-type header forGuido van Rossum2001-08-231-5/+7
* Only catch the errors that can actually occur, as reported in bug #411881.Martin v. Löwis2001-08-111-2/+2
* Whitespace normalization.Tim Peters2001-08-091-3/+3
* SF patch #403640: incomplete proxy handling in URLLIBTim Peters2001-08-091-0/+62
* SF Patch #420725 by Walter Doerwald:Guido van Rossum2001-08-091-4/+17
* Only write out one blank line before the request data.Fred Drake2001-07-041-2/+2
* Fix SF bug [ #416231 ] urllib.basejoin fails to apply some ../.Guido van Rossum2001-04-151-0/+2
* fixing 408085 - redirect from https becomes httpMoshe Zadka2001-04-091-1/+1
* updated __all__ to include several other namesSkip Montanaro2001-03-131-1/+5
* Grr, splittag was also missing from __all__.Jack Jansen2001-03-051-1/+1
* Added url2pathname and pathname2url to __all__.Jack Jansen2001-03-051-1/+1
* RISCOS changes by dschwertberger.Guido van Rossum2001-03-021-0/+2
* final round of __all__ lists (I hope) - skipped urllib2 because Moshe may beSkip Montanaro2001-03-011-0/+4
* Whitespace normalization.Tim Peters2001-02-281-3/+3
* Fixing bug #227562 by calling URLopener.http_error_default whenMoshe Zadka2001-02-271-12/+18
* provide simple recovery/escape from apparent redirect recursion. If theSkip Montanaro2001-02-151-1/+17