summaryrefslogtreecommitdiffstats
path: root/Lib/urllib2.py
Commit message (Expand)AuthorAgeFilesLines
* iteritems() should not have been used for self.timeout which changes during t...Raymond Hettinger2003-05-231-1/+1
* To be on the safe side, backed out any questionable iteritem changes and set ...Brett Cannon2003-05-181-2/+2
* Revert some changes back to dict.items made in a previous patch.Brett Cannon2003-05-171-2/+2
* Remove assert that checked if a parameter was an instance of Request. Closes...Brett Cannon2003-05-121-1/+0
* Change Request.add_header to call string.capitalize in order to normalizeBrett Cannon2003-05-121-7/+8
* Better fix for newurl as suggested by Jim Jewett in SF bug #730963.Jeremy Hylton2003-05-051-12/+2
* Add comment explaining try/except for endheaders().Jeremy Hylton2003-05-051-0/+2
* Repair redirect handling and raise URLError on host-not-found.Jeremy Hylton2003-05-041-22/+36
* SF Patch 549151: urllib2 POSTs on redirectRaymond Hettinger2003-04-241-4/+34
* Fix NameError exception ('name' undefined)Andrew M. Kuchling2002-11-061-0/+1
* Typo in docstringJeremy Hylton2002-10-111-1/+1
* Fix for SF bug #599836: Don't duplicate headers.Jeremy Hylton2002-10-111-2/+3
* SF #614596, fix for urllib2.AbstractBasicAuthHandler, John Williams (johnw42)Neal Norwitz2002-10-091-1/+1
* Remove ugly irregular spaces from in front of some comments.Fred Drake2002-08-131-3/+3
* Whitespace normalization.Tim Peters2002-07-161-2/+2
* Fix from SF patch #527518: proxy config with user+pass authentication.Jeremy Hylton2002-07-071-3/+8
* Fix HTTPError __init__ for cases where fp is None.Jeremy Hylton2002-06-031-2/+6
* Remove uses of the string and types modules:Walter Dörwald2002-06-031-4/+3
* SF 563203. Replaced 'has_key()' with 'in'.Raymond Hettinger2002-06-011-10/+10
* Use types.StringTypes instead of (types.StringType, types.UnicodeType) --Michael W. Hudson2002-05-201-2/+2
* Partial introduction of bools where appropriate.Guido van Rossum2002-04-071-4/+4
* Patch #525870: Avoid duplicate stat calls, use st_ attributes.Martin v. Löwis2002-03-181-4/+2
* Fix bug #511786 (2.2.1 candidate): ensure that custom-supplied headersGreg Ward2002-02-111-1/+1
* Fix SF bug 468948 & 451295: urllib2 authentication problemsJeremy Hylton2001-11-091-28/+12
* Clean up one comment, fix typos in others.Fred Drake2001-11-081-7/+7
* Fix [ #465502 ] urllib2: urlopen unicode problemJeremy Hylton2001-10-091-67/+36
* Add content-type header to ftp URLs (SF patch #454553)Jeremy Hylton2001-08-271-4/+13
* SF patch #454553 by Walter Dörwald: add content-type to FTP URLs, likeGuido van Rossum2001-08-241-4/+7
* Replace all type comparisons with isinstance() callsJeremy Hylton2001-08-111-9/+9
* Whitespace normalization.Tim Peters2001-08-091-1/+1
* Fix SF bug [ #447370 ] typo in urllib2.pyJeremy Hylton2001-08-071-7/+9
* Patch #444359: Remove unused imports.Martin v. Löwis2001-08-021-1/+0
* Only write out one blank line before the request data.Fred Drake2001-07-041-1/+1
* Raise useful exception when called with URL for which request typeJeremy Hylton2001-05-091-1/+2
* Fix typo (missing "req." prefix on error_302_dict) found by NeilGuido van Rossum2001-04-151-1/+2
* Idiotic braino caused HTTP openers to ignore proxies.Moshe Zadka2001-04-111-1/+1
* * Fixing the password-proxy bugMoshe Zadka2001-03-201-7/+8
* Whitespace normalization.Tim Peters2001-03-161-2/+2
* Checking in patch 404826 -- urllib2 enhancements and documentations.Moshe Zadka2001-03-011-48/+115
* String method conversion.Eric S. Raymond2001-02-091-17/+16
* Whitespace normalization. Top level of Lib now fixed-point for reindent.py!Tim Peters2001-01-151-30/+30
* two fixes for redirects:Jeremy Hylton2000-10-121-24/+31
* Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in eitherThomas Wouters2000-07-161-1/+1
* typos fixed by Rob HooftJeremy Hylton2000-06-281-1/+1
* Untabify to pass the -tt test.Fred Drake2000-02-101-383/+383
* The third and final doc-string sweep by Ka-Ping Yee.Guido van Rossum2000-02-041-1/+1
* EXPERIMENTALJeremy Hylton2000-01-201-0/+1063