Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #23887: urllib.error.HTTPError now has a proper repr() representation. | Facundo Batista | 2015-04-22 | 1 | -43/+102 |
| | |||||
* | #7159: generalize urllib prior auth support. | R David Murray | 2015-04-16 | 1 | -16/+88 |
| | | | | | | | | | | | | | This fix is a superset of the functionality introduced by the issue #19494 enhancement, and supersedes that fix. Instead of a new handler, we have a new password manager that tracks whether we should send the auth for a given uri. This allows us to say "always send", satisfying #19494, or track that we've succeeded in auth and send the creds right away on every *subsequent* request. The support for using the password manager is added to AbstractBasicAuth, which means the proxy handler also now can handle prior auth if passed the new password manager. Patch by Akshit Khurana, docs mostly by me. | ||||
* | Issue #23387: Skip test_issue16464 if it raises an 5xx error. | Berker Peksag | 2015-03-02 | 1 | -21/+11 |
|\ | | | | | | | | | Also, remove support.run_doctest() since there is no doctests in test_urllib2 and urllib.request. | ||||
| * | Issue #23387: Skip test_issue16464 if it raises an 5xx error. | Berker Peksag | 2015-03-02 | 1 | -21/+11 |
| | | | | | | | | | | Also, remove support.run_doctest() since there is no doctests in test_urllib2 and urllib.request. | ||||
* | | Issue #7665: Fixed tests test_ntpath and test_urllib2 when ran in the | Serhiy Storchaka | 2015-01-26 | 1 | -1/+1 |
|\ \ | |/ | | | | | directory containing a backslash. | ||||
| * | Issue #7665: Fixed tests test_ntpath and test_urllib2 when ran in the | Serhiy Storchaka | 2015-01-26 | 1 | -1/+1 |
| | | | | | | | | directory containing a backslash. | ||||
* | | Close #19494: add urrlib.request.HTTPBasicPriorAuthHandler | Nick Coghlan | 2014-11-12 | 1 | -0/+15 |
|/ | | | | | | | | | | | | | | | | | | | | | This auth handler adds the Authorization header to the first HTTP request rather than waiting for a HTTP 401 Unauthorized response from the server as the default HTTPBasicAuthHandler does. This allows working with websites like https://api.github.com which do not follow the strict interpretation of RFC, but more the dicta in the end of section 2 of RFC 2617: > A client MAY preemptively send the corresponding Authorization > header with requests for resources in that space without receipt > of another challenge from the server. Similarly, when a client > sends a request to a proxy, it may reuse a userid and password in > the Proxy-Authorization header field without receiving another > challenge from the proxy server. See section 4 for security > considerations associated with Basic authentication. Patch by Matej Cepl. | ||||
* | Issue #19524: Fixed resource leak in the HTTP connection when an invalid | Serhiy Storchaka | 2014-09-06 | 1 | -0/+29 |
| | | | | response is received. Patch by Martin Panter. | ||||
* | Fix localhost checking in FileHandler. Raised in #21970. | Senthil Kumaran | 2014-07-22 | 1 | -1/+2 |
| | |||||
* | Convert urllib.request parse_proxy doctests to unittests. | Senthil Kumaran | 2014-04-14 | 1 | -1/+38 |
| | |||||
* | Issue #20939: Use www.example.com instead of www.python.org to avoid test | Ned Deily | 2014-03-27 | 1 | -1/+1 |
| | | | | failures when ssl is not present. | ||||
* | Issue #20939: Backout test_urllib2.test_issue16464 disables: | Ned Deily | 2014-03-27 | 1 | -6/+0 |
| | | | | | 68335b8afb1f 3.4 ad0c75b7bd7d default | ||||
* | Skip test_urllib2.test_issue16464() is the ssl module is missing | Victor Stinner | 2014-03-19 | 1 | -0/+6 |
| | |||||
* | Merge: #20933: At least one place maps 'test' to 'localhost'...fix test. | R David Murray | 2014-03-15 | 1 | -1/+2 |
|\ | |||||
| * | #20933: At least one place maps 'test' to 'localhost'...fix test. | R David Murray | 2014-03-15 | 1 | -1/+2 |
| | | | | | | | | | | | | | | Discovery and patch by Wenzhu Man. University of Waterloo apparently maps the local name 'test' to localhost, which is in the bypass list, causing the test to fail. So change 'test' to a name unlikely to get mapped to localhost. | ||||
* | | Issue #20555: Use specific asserts in urllib, httplib, ftplib, cgi, wsgiref ↵ | Serhiy Storchaka | 2014-02-08 | 1 | -3/+4 |
|\ \ | |/ | | | | | tests. | ||||
| * | Issue #20555: Use specific asserts in urllib, httplib, ftplib, cgi, wsgiref ↵ | Serhiy Storchaka | 2014-02-08 | 1 | -3/+4 |
| | | | | | | | | tests. | ||||
| * | Backporing the fix from Issue #12692 | Senthil Kumaran | 2013-12-29 | 1 | -0/+1 |
| | | |||||
| * | #17648 - convert test_urllib2.py doctests to unittests | Senthil Kumaran | 2013-04-09 | 1 | -210/+186 |
| | | |||||
* | | 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 |
| | |