| Commit message (Expand) | Author | Age | Files | Lines |
* | Whitespace normalization. | Tim Peters | 2004-01-18 | 1 | -7/+7 |
|
|
* | Rewrite AbstractHTTPHandler to use modern httplib interface. | Jeremy Hylton | 2003-12-17 | 1 | -25/+26 |
|
|
* | Remove __del__ methods to avoid creating uncollectable cyclic trash. | Jeremy Hylton | 2003-12-15 | 1 | -13/+4 |
|
|
* | SF patch 852995: add processors feature to urllib2 | Jeremy Hylton | 2003-12-14 | 1 | -56/+138 |
|
|
* | Apply patch 823328 -- support for rfc 2617 digestion authentication. | Jeremy Hylton | 2003-10-21 | 1 | -44/+96 |
|
|
* | Fix a bunch of typos in documentation, docstrings and comments. | Walter Dörwald | 2003-10-20 | 1 | -1/+1 |
|
|
* | SF patch [ 816787 ] urllib2.URLError don't calll IOError.__init__ | Jeremy Hylton | 2003-10-06 | 1 | -1/+5 |
|
|
* | Patch 549151, rev4: redirect posts for 301 also. Will backport to 2.2. | Martin v. Löwis | 2003-07-12 | 1 | -5/+5 |
|
|
* | Fix wrong header name. The framework looks for auth_header. | Jeremy Hylton | 2003-07-10 | 1 | -8/+10 |
|
|
* | Change all header strings to be as if they were capitalize()'ed. Also call | Brett Cannon | 2003-06-17 | 1 | -9/+9 |
|
|
* | Whitespace normalization. | Tim Peters | 2003-06-15 | 1 | -1/+1 |
|
|
* | Patch #754340: Fix typo in redirect_request. Will backport to 2.2. | Martin v. Löwis | 2003-06-14 | 1 | -1/+1 |
|
|
* | - urllib2.py now knows how to order proxy classes, so the user doesn't | Gustavo Niemeyer | 2003-06-07 | 1 | -11/+24 |
|
|
* | iteritems() should not have been used for self.timeout which changes during t... | Raymond Hettinger | 2003-05-23 | 1 | -1/+1 |
|
|
* | To be on the safe side, backed out any questionable iteritem changes and set ... | Brett Cannon | 2003-05-18 | 1 | -2/+2 |
|
|
* | Revert some changes back to dict.items made in a previous patch. | Brett Cannon | 2003-05-17 | 1 | -2/+2 |
|
|
* | Remove assert that checked if a parameter was an instance of Request. Closes... | Brett Cannon | 2003-05-12 | 1 | -1/+0 |
|
|
* | Change Request.add_header to call string.capitalize in order to normalize | Brett Cannon | 2003-05-12 | 1 | -7/+8 |
|
|
* | Better fix for newurl as suggested by Jim Jewett in SF bug #730963. | Jeremy Hylton | 2003-05-05 | 1 | -12/+2 |
|
|
* | Add comment explaining try/except for endheaders(). | Jeremy Hylton | 2003-05-05 | 1 | -0/+2 |
|
|
* | Repair redirect handling and raise URLError on host-not-found. | Jeremy Hylton | 2003-05-04 | 1 | -22/+36 |
|
|
* | SF Patch 549151: urllib2 POSTs on redirect | Raymond Hettinger | 2003-04-24 | 1 | -4/+34 |
|
|
* | Fix NameError exception ('name' undefined) | Andrew M. Kuchling | 2002-11-06 | 1 | -0/+1 |
|
|
* | Typo in docstring | Jeremy Hylton | 2002-10-11 | 1 | -1/+1 |
|
|
* | Fix for SF bug #599836: Don't duplicate headers. | Jeremy Hylton | 2002-10-11 | 1 | -2/+3 |
|
|
* | SF #614596, fix for urllib2.AbstractBasicAuthHandler, John Williams (johnw42) | Neal Norwitz | 2002-10-09 | 1 | -1/+1 |
|
|
* | Remove ugly irregular spaces from in front of some comments. | Fred Drake | 2002-08-13 | 1 | -3/+3 |
|
|
* | Whitespace normalization. | Tim Peters | 2002-07-16 | 1 | -2/+2 |
|
|
* | Fix from SF patch #527518: proxy config with user+pass authentication. | Jeremy Hylton | 2002-07-07 | 1 | -3/+8 |
|
|
* | Fix HTTPError __init__ for cases where fp is None. | Jeremy Hylton | 2002-06-03 | 1 | -2/+6 |
|
|
* | Remove uses of the string and types modules: | Walter Dörwald | 2002-06-03 | 1 | -4/+3 |
|
|
* | SF 563203. Replaced 'has_key()' with 'in'. | Raymond Hettinger | 2002-06-01 | 1 | -10/+10 |
|
|
* | Use types.StringTypes instead of (types.StringType, types.UnicodeType) -- | Michael W. Hudson | 2002-05-20 | 1 | -2/+2 |
|
|
* | Partial introduction of bools where appropriate. | Guido van Rossum | 2002-04-07 | 1 | -4/+4 |
|
|
* | Patch #525870: Avoid duplicate stat calls, use st_ attributes. | Martin v. Löwis | 2002-03-18 | 1 | -4/+2 |
|
|
* | Fix bug #511786 (2.2.1 candidate): ensure that custom-supplied headers | Greg Ward | 2002-02-11 | 1 | -1/+1 |
|
|
* | Fix SF bug 468948 & 451295: urllib2 authentication problems | Jeremy Hylton | 2001-11-09 | 1 | -28/+12 |
|
|
* | Clean up one comment, fix typos in others. | Fred Drake | 2001-11-08 | 1 | -7/+7 |
|
|
* | Fix [ #465502 ] urllib2: urlopen unicode problem | Jeremy Hylton | 2001-10-09 | 1 | -67/+36 |
|
|
* | Add content-type header to ftp URLs (SF patch #454553) | Jeremy Hylton | 2001-08-27 | 1 | -4/+13 |
|
|
* | SF patch #454553 by Walter Dörwald: add content-type to FTP URLs, like | Guido van Rossum | 2001-08-24 | 1 | -4/+7 |
|
|
* | Replace all type comparisons with isinstance() calls | Jeremy Hylton | 2001-08-11 | 1 | -9/+9 |
|
|
* | Whitespace normalization. | Tim Peters | 2001-08-09 | 1 | -1/+1 |
|
|
* | Fix SF bug [ #447370 ] typo in urllib2.py | Jeremy Hylton | 2001-08-07 | 1 | -7/+9 |
|
|
* | Patch #444359: Remove unused imports. | Martin v. Löwis | 2001-08-02 | 1 | -1/+0 |
|
|
* | Only write out one blank line before the request data. | Fred Drake | 2001-07-04 | 1 | -1/+1 |
|
|
* | Raise useful exception when called with URL for which request type | Jeremy Hylton | 2001-05-09 | 1 | -1/+2 |
|
|
* | Fix typo (missing "req." prefix on error_302_dict) found by Neil | Guido van Rossum | 2001-04-15 | 1 | -1/+2 |
|
|
* | Idiotic braino caused HTTP openers to ignore proxies. | Moshe Zadka | 2001-04-11 | 1 | -1/+1 |
|
|
* | * Fixing the password-proxy bug | Moshe Zadka | 2001-03-20 | 1 | -7/+8 |
|
|