| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Fix typo | Senthil Kumaran | 2013-09-10 | 1 | -1/+1 |
| | | |||||
| * | Issue #18978: Add tests to capture expected behavior for class-level method ↵ | Jason R. Coombs | 2013-09-08 | 1 | -0/+9 |
| | | | | | overrides. | ||||
| * | Fix #17272 - Make Request.full_url and Request.get_full_url return same ↵ | Senthil Kumaran | 2013-05-24 | 1 | -0/+15 |
| | | | | | | | result under all circumstances. Document the change of Request.full_url to a property. | ||||
| * | Issue #17272: Making the urllib.request's Request.full_url a descriptor. Fixes | Senthil Kumaran | 2013-04-25 | 1 | -0/+24 |
| | | | | | bugs with assignment to full_url. Patch by Demian Brecht. | ||||
| * | #17648 - Clean up test_urllib2.py. Converted doctests to unittest for | Senthil Kumaran | 2013-04-09 | 1 | -215/+185 |
| | | | | | expansion. | ||||
| * | #17485: Delete the Content-Length header if the data attribute is deleted. | R David Murray | 2013-03-20 | 1 | -2/+11 |
| | | | | | This is a follow on to issue 16464. Original patch by Daniel Wozniak. | ||||
| * | #17471: merge from 3.3 | Senthil Kumaran | 2013-03-19 | 1 | -0/+2 |
| |\ | |||||
| | * | #17471 - merge from 3.2 | Senthil Kumaran | 2013-03-19 | 1 | -1/+7 |
| | |\ | |||||
| | | * | #17471 - Increasing the urllib.error test coverage. Bringing it to 100%. ↵ | Senthil Kumaran | 2013-03-19 | 1 | -1/+9 |
| | | | | | | | | | | | | | Based on patch contributed by Daniel Wozniak | ||||
| * | | | #17471 - merge from 3.3 | Senthil Kumaran | 2013-03-19 | 1 | -0/+3 |
| |\ \ \ | |/ / | |||||
| | * | | #17471 - merge from 3.2 | Senthil Kumaran | 2013-03-19 | 1 | -0/+3 |
| | |\ \ | | |/ | |||||
| | | * | #17471 - Improve urllib2 test coverage. Patch contributed by Daniel Wozniak | Senthil Kumaran | 2013-03-19 | 1 | -0/+3 |
| | | | | |||||
| | * | | merge from 3.2 | Senthil Kumaran | 2012-12-23 | 1 | -12/+28 |
| | |\ \ | | |/ | | | | | | | Fix Issue15701 - HTTPError info method call raises AttributeError. Fix that to return headers correctly | ||||
| | | * | Fix Issue15701 - HTTPError info method call raises AttributeError. Fix that ↵ | Senthil Kumaran | 2012-12-23 | 1 | -10/+26 |
| | | | | | | | | | | | | | to return headers correctly | ||||
| * | | | Refactor test_urllib2. Include test_HTTPError_interface under MiscTests | Senthil Kumaran | 2013-03-19 | 1 | -21/+20 |
| | | | | |||||
| * | | | #17474 - Remove the various deprecated methods of Request class. | Senthil Kumaran | 2013-03-19 | 1 | -21/+0 |
| | | | | |||||
| * | | | Skip a test unless the network resource is available. | Brett Cannon | 2013-01-26 | 1 | -0/+2 |
| | | | | |||||
| * | | | replace threw with raised (#16714) | Andrew Svetlov | 2012-12-19 | 1 | -1/+1 |
| |\ \ \ | |/ / | |||||
| | * | | replace threw with raised (#16714) | Andrew Svetlov | 2012-12-19 | 1 | -1/+1 |
| | |\ \ | | |/ | |||||
| | | * | replace threw with raised (#16714) | Andrew Svetlov | 2012-12-19 | 1 | -1/+1 |
| | | | | |||||
| * | | | Issue #16717: get rid of socket.error, replace with OSError | Andrew Svetlov | 2012-12-18 | 1 | -2/+2 |
| | | | | |||||
| * | | | Fix Issue15701 : add .headers attribute to urllib.error.HTTPError | Senthil Kumaran | 2012-12-10 | 1 | -1/+5 |
| | | | | |||||
| * | | | Issue #16464: reset Request's Content-Length header on .data change. | Andrew Svetlov | 2012-11-27 | 1 | -0/+37 |
| | | | | | | | | | | | | | | | | | | | It will be recalculated on sending request to HTTP server. Patch by Alexey Kachayev | ||||
| * | | | Issue #12692: Fix resource leak in urllib.request. | Nadeem Vawda | 2012-10-21 | 1 | -0/+1 |
| |/ / | |||||
| * | | Fix Issue 15743 - improve urllib tests by removing deprecated method usages. ↵ | Senthil Kumaran | 2012-08-20 | 1 | -31/+33 |
| | | | | | | | | | Patch by Jeff Knupp. | ||||
| * | | Issue12541 - Add UserWarning for unquoted realms | Senthil Kumaran | 2012-05-15 | 1 | -5/+6 |
| |\ \ | |/ | |||||
| | * | Issue12541 - Add UserWarning for unquoted realms | Senthil Kumaran | 2012-05-15 | 1 | -5/+6 |
| | | | |||||
| * | | merge from 3.2 - Issue #12541: Be lenient with quotes around Realm field of ↵ | Senthil Kumaran | 2012-05-15 | 1 | -0/+15 |
| |\ \ | |/ | | | | | HTTP Basic Authentation in urllib2. | ||||
| | * | Issue #12541: Be lenient with quotes around Realm field of HTTP Basic ↵ | Senthil Kumaran | 2012-05-15 | 1 | -0/+15 |
| | | | | | | | | | | | | | Authentation in urllib2. G: changed Misc/NEWS | ||||
| * | | code improvement. 'as cm' not required when not used. Review comment by ↵ | Senthil Kumaran | 2012-04-12 | 1 | -7/+7 |
| | | | | | | | | | Georg Brandl | ||||
| * | | use assertWarns instead of check_warnings - Issue14341 | Senthil Kumaran | 2012-04-11 | 1 | -7/+9 |
| | | | |||||
| * | | Fix the buildbot breakdown - issue 10050 | Senthil Kumaran | 2012-03-14 | 1 | -2/+0 |
| | | | |||||
| * | | deprecated the old urllib primitives in 3.3 urllib package - issue 10050 | Senthil Kumaran | 2012-03-14 | 1 | -4/+19 |
| | | | |||||
| * | | merge from 3.2 | Senthil Kumaran | 2012-01-04 | 1 | -0/+13 |
| |\ \ | |/ | |||||
| | * | Issue13696 - Fix 302 Redirection for Relative urls. | Senthil Kumaran | 2012-01-04 | 1 | -0/+13 |
| | | | |||||
| * | | Corrected order of parameters to HTTPError in test_urllib2.py. | Jason R. Coombs | 2011-12-04 | 1 | -1/+1 |
| | | | |||||
| * | | Pass positional arguments - HTTPError is not accepting keyword arguments. ↵ | Jason R. Coombs | 2011-12-04 | 1 | -1/+3 |
| | | | | | | | | | Reference #13211 and #12555. | ||||
| * | | Merged fix for #13211 from 3.2 | Jason R. Coombs | 2011-12-03 | 1 | -0/+11 |
| |\ \ | |/ | |||||
| | * | Issue #13211: Add .reason attribute to HTTPError to implement parent class ↵ | Jason R. Coombs | 2011-11-07 | 1 | -0/+11 |
| | | | | | | | | | (URLError) interface. | ||||
| * | | Fix test_urllib2 error on Windows in relation with issue #13287. | Florent Xicluna | 2011-11-04 | 1 | -0/+4 |
| | | | |||||
| * | | issue13287 - Define __all__ for urllib.request and urllib.error and expose only | Senthil Kumaran | 2011-11-01 | 1 | -0/+12 |
| | | | | | | | | | the relevant module. Other cleanup improvements. Patch by flox. | ||||
| * | | Merge with 3.2. | Ezio Melotti | 2011-10-19 | 1 | -1/+1 |
| |\ \ | |/ | |||||
| | * | Remove duplication. | Ezio Melotti | 2011-10-19 | 1 | -1/+1 |
| | | | |||||
| * | | Merge: #10883: Fix socket leaks in urllib.request. | Nadeem Vawda | 2011-07-23 | 1 | -0/+1 |
| |\ \ | |/ | | | | | | | | | | | | | * ftpwrapper now uses reference counting to ensure that the underlying socket is closed when the ftpwrapper object is no longer in use * ftplib.FTP.ntransfercmd() now closes the socket if an error occurs Initial patch by Victor Stinner. | ||||
| | * | Issue #10883: Fix socket leaks in urllib.request. | Nadeem Vawda | 2011-07-23 | 1 | -0/+1 |
| | | | | | | | | | | | | | | | | | * ftpwrapper now uses reference counting to ensure that the underlying socket is closed when the ftpwrapper object is no longer in use * ftplib.FTP.ntransfercmd() now closes the socket if an error occurs Initial patch by Victor Stinner. | ||||
| * | | (Merge 3.2) Issue #12133: fix a ResourceWarning in urllib.request | Victor Stinner | 2011-06-17 | 1 | -0/+3 |
| |\ \ | |/ | | | | | | | | | AbstractHTTPHandler.do_open() of urllib.request closes the HTTP connection if its getresponse() method fails with a socket error. Patch written by Ezio Melotti. | ||||
| | * | Issue #12133: fix a ResourceWarning in urllib.request | Victor Stinner | 2011-06-17 | 1 | -0/+3 |
| | | | | | | | | | | | | | AbstractHTTPHandler.do_open() of urllib.request closes the HTTP connection if its getresponse() method fails with a socket error. Patch written by Ezio Melotti. | ||||
| * | | Fix closes Issue #11799: urllib.request Authentication Handlers will raise a | Senthil Kumaran | 2011-05-11 | 1 | -0/+24 |
| | | | | | | | | | ValueError when presented with an unsupported Authentication Scheme. | ||||
| * | | merge from 3.2 | Senthil Kumaran | 2011-04-12 | 1 | -1/+14 |
| |\ \ | |/ | |||||
| | * | merge from 3.1 | Senthil Kumaran | 2011-04-12 | 1 | -1/+14 |
| | |\ | |||||
