| Commit message (Expand) | Author | Age | Files | Lines |
* | Replace list of constants with tuples of constants. | Raymond Hettinger | 2005-02-06 | 1 | -1/+1 |
|
|
* | SF patch #1028908 | Raymond Hettinger | 2005-02-05 | 1 | -3/+6 |
|
|
* | Patch #1095362: replace hardcoded test for POST/GET with call to get_method, | Johannes Gijsbers | 2005-01-09 | 1 | -1/+1 |
|
|
* | Two small changes, SF bug #974757 and SF patch #1037974. | Jeremy Hylton | 2004-12-22 | 1 | -6/+8 |
|
|
* | Added a usegmt flag to email.Utils.formatdate - this allows it to be | Anthony Baxter | 2004-10-11 | 1 | -2/+2 |
|
|
* | Use multi-line import | Andrew M. Kuchling | 2004-08-31 | 1 | -3/+3 |
|
|
* | Whitespace normalization. | Tim Peters | 2004-08-08 | 1 | -3/+3 |
|
|
* | Fix urllib2.urlopen() handling of chunked content encoding. | Jeremy Hylton | 2004-08-07 | 1 | -2/+14 |
|
|
* | Patch #994595: Recognize Basic auth even if other schemes are offered. | Martin v. Löwis | 2004-08-03 | 1 | -1/+1 |
|
|
* | Patch [ 972332 ] urllib2 FTPHandler bugs / John J. Lee | Kurt B. Kaiser | 2004-07-11 | 1 | -2/+4 |
|
|
* | [Patch #988602] Move the urllib2 tests into the test framework | Andrew M. Kuchling | 2004-07-10 | 1 | -77/+0 |
|
|
* | [Patch #988504] Fix HTTP error handling via a patch from John J. Lee | Andrew M. Kuchling | 2004-07-10 | 1 | -10/+6 |
|
|
* | [Bug #912845] urllib2 only checks for a 200 return code, but 206 is also lega... | Andrew M. Kuchling | 2004-06-29 | 1 | -2/+2 |
|
|
* | Cleanup: the in operator already returns a bool, no need to bool() it again | Neal Norwitz | 2004-06-07 | 1 | -4/+4 |
|
|
* | Patch #963318: Add support for client-side cookie management. | Martin v. Löwis | 2004-05-31 | 1 | -16/+59 |
|
|
* | Fix [ 738973 ] urllib2 CacheFTPHandler doesn't work on multiple dirs, as | Mark Hammond | 2004-05-10 | 1 | -1/+1 |
|
|
* | Patch #944110: Properly process empty passwords. Fixes #944082. | Martin v. Löwis | 2004-05-06 | 1 | -1/+1 |
|
|
* | Fix comment typo | Andrew M. Kuchling | 2004-04-06 | 1 | -1/+1 |
|
|
* | Fix two bugs in the new do_open() implementation for HTTPHandler. | Jeremy Hylton | 2004-02-24 | 1 | -6/+17 |
|
|
* | Patch #711838: Allow non-anonymous ftp urls in urllib2. | Martin v. Löwis | 2004-02-15 | 1 | -6/+15 |
|
|
* | Patch #817379: Allow for absolute ftp paths. | Martin v. Löwis | 2004-02-15 | 1 | -1/+1 |
|
|
* | 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 |
|
|