summaryrefslogtreecommitdiffstats
path: root/Lib/urllib2.py
Commit message (Expand)AuthorAgeFilesLines
* Remove __del__ methods to avoid creating uncollectable cyclic trash.Jeremy Hylton2003-12-151-13/+4
* SF patch 852995: add processors feature to urllib2Jeremy Hylton2003-12-141-56/+138
* Apply patch 823328 -- support for rfc 2617 digestion authentication.Jeremy Hylton2003-10-211-44/+96
* Fix a bunch of typos in documentation, docstrings and comments.Walter Dörwald2003-10-201-1/+1
* SF patch [ 816787 ] urllib2.URLError don't calll IOError.__init__Jeremy Hylton2003-10-061-1/+5
* Patch 549151, rev4: redirect posts for 301 also. Will backport to 2.2.Martin v. Löwis2003-07-121-5/+5
* Fix wrong header name. The framework looks for auth_header.Jeremy Hylton2003-07-101-8/+10
* Change all header strings to be as if they were capitalize()'ed. Also callBrett Cannon2003-06-171-9/+9
* Whitespace normalization.Tim Peters2003-06-151-1/+1
* Patch #754340: Fix typo in redirect_request. Will backport to 2.2.Martin v. Löwis2003-06-141-1/+1
* - urllib2.py now knows how to order proxy classes, so the user doesn'tGustavo Niemeyer2003-06-071-11/+24
* 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