summaryrefslogtreecommitdiffstats
path: root/Lib/urllib/request.py
Commit message (Expand)AuthorAgeFilesLines
* #17485: Delete the Content-Length header if the data attribute is deleted.R David Murray2013-03-201-1/+1
* #17474 - Remove the various deprecated methods of Request class.Senthil Kumaran2013-03-191-44/+0
* Replace IOError with OSError (#16715)Andrew Svetlov2012-12-251-8/+8
* Issue #16719: Get rid of WindowsError. Use OSError insteadAndrew Svetlov2012-12-191-2/+2
* Issue #16717: get rid of socket.error, replace with OSErrorAndrew Svetlov2012-12-181-6/+6
* Get rig of EnvironmentError (#16705)Andrew Svetlov2012-12-171-1/+1
* Issue #16464: reset Request's Content-Length header on .data change.Andrew Svetlov2012-11-271-2/+25
* Issue #16423: urllib.request now has support for ``data:`` URLs.Antoine Pitrou2012-11-241-3/+35
* Fixes issue #16409: The reporthook callback made by the legacyGregory P. Smith2012-11-101-2/+2
|\
| * Fixes issue #16409: The reporthook callback made by the legacyGregory P. Smith2012-11-101-2/+2
| * Issue #16250: Fix URLError invocation with proper argsSenthil Kumaran2012-10-271-15/+15
| |\
| | * Issue #16250: Fix URLError invocation with proper args.Senthil Kumaran2012-10-271-18/+15
| | * Fix issue #16270: urllib may hang when used for retrieving files via FTP by u...Giampaolo Rodola'2012-10-191-6/+0
| * | Fix issue #16270: urllib may hang when used for retrieving files via FTP by u...Giampaolo Rodola'2012-10-191-6/+0
* | | Issue #16301: Fix the localhost verification in urllib/request.py for file://...Senthil Kumaran2012-10-221-1/+1
* | | Issue #16250: Fix the invocations of URLError which had misplaced filename at...Senthil Kumaran2012-10-221-13/+13
* | | Issue #10836: Fix exception raised when file not found in urlretrieveSenthil Kumaran2012-10-211-2/+2
* | | Issue #12692: Fix resource leak in urllib.request.Nadeem Vawda2012-10-211-0/+6
* | | Fix issue #16270: urllib may hang when used for retrieving files via FTP by u...Giampaolo Rodola'2012-10-191-6/+0
|/ /
* | revert the changes done for issue14826 - quoting witin Request is not desirable.Senthil Kumaran2012-07-091-1/+0
|\ \ | |/
| * revert the changes done for issue14826 - quoting witin Request is not desirable.Senthil Kumaran2012-07-091-1/+0
* | issue 14826 - Address the buildbot failure quote of url is the required chang...Senthil Kumaran2012-07-081-1/+1
|\ \ | |/
| * issue 14826 - Address the buildbot failure ( explanation msg164973)Senthil Kumaran2012-07-081-1/+1
* | Fix issue14826 - make urllib.request.Request quoted url consistent with URLOp...Senthil Kumaran2012-07-081-1/+2
|\ \ | |/
| * Fix issue14826 - make urllib.request.Request quoted url consistent with URLOp...Senthil Kumaran2012-07-081-1/+2
| * Partial backport of 612f34e31270: fix spacing error in exception message.Georg Brandl2012-06-241-2/+2
* | urllib.request: fix spacing errors in exception/warning messages.Georg Brandl2012-06-241-5/+5
* | Issue #14780: urllib.request.urlopen() now has a `cadefault` argument to use ...Antoine Pitrou2012-05-161-4/+7
* | Issue12541 - Add UserWarning for unquoted realmsSenthil Kumaran2012-05-151-0/+3
|\ \ | |/
| * Issue12541 - Add UserWarning for unquoted realmsSenthil Kumaran2012-05-151-0/+4
* | merge from 3.2 - Issue #12541: Be lenient with quotes around Realm field of H...Senthil Kumaran2012-05-151-1/+1
|\ \ | |/
| * Issue #12541: Be lenient with quotes around Realm field of HTTP Basic Authent...Senthil Kumaran2012-05-151-1/+1
* | Explain the use of charset parameter with Content-Type header: issue11082Senthil Kumaran2012-03-161-2/+3
|\ \ | |/
| * Explain the use of charset parameter with Content-Type header. Issue11082Senthil Kumaran2012-03-161-2/+3
* | deprecated the old urllib primitives in 3.3 urllib package - issue 10050Senthil Kumaran2012-03-141-8/+26
* | Issue10050 - urlretrieve uses newer urlopen. reporthook of urlretrieve takes,...Senthil Kumaran2012-03-141-8/+72
* | merge from 3.2Senthil Kumaran2012-01-211-0/+2
|\ \ | |/
| * Fix Issue6631 - Disallow relative file paths in urllib urlopenSenthil Kumaran2012-01-211-0/+2
* | merge from 3.2 - Fix Issue #13642: Unquote before b64encoding user:password d...Senthil Kumaran2012-01-141-0/+2
|\ \ | |/
| * Fix Issue #13642: Unquote before b64encoding user:password during Basic Authe...Senthil Kumaran2012-01-141-3/+2
* | merge from 3.2Senthil Kumaran2012-01-041-2/+2
|\ \ | |/
| * Issue13696 - Fix 302 Redirection for Relative urls.Senthil Kumaran2012-01-041-2/+2
* | Issue #8035: urllib: Fix a bug where the client could remain stuck after aCharles-François Natali2011-12-181-2/+0
|\ \ | |/
| * Issue #8035: urllib: Fix a bug where the client could remain stuck after aCharles-François Natali2011-12-181-2/+0
* | 'HTTPSHandler' and not the type.Senthil Kumaran2011-11-011-1/+1
* | Append HTTPSHandler to __all__ when it is available.Senthil Kumaran2011-11-011-0/+2
* | issue13287 - Define __all__ for urllib.request and urllib.error and expose onlySenthil Kumaran2011-11-011-18/+22
* | merge from 3.2 - Fix issue 10817 - Fix urlretrieve function to raise ContentT...Senthil Kumaran2011-10-311-2/+2
|\ \ | |/
| * Fix issue 10817 - Fix urlretrieve function to raise ContentTooShortErrorSenthil Kumaran2011-10-311-2/+2
* | urllib.request - syntax changes enhancing readability. By Éric AraujoSenthil Kumaran2011-10-191-13/+12
|\ \ | |/