summaryrefslogtreecommitdiffstats
path: root/Lib/urllib/request.py
Commit message (Collapse)AuthorAgeFilesLines
* 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 ↵Senthil Kumaran2012-07-081-1/+1
|\ \ | |/ | | | | change ( explanation msg164973)
| * issue 14826 - Address the buildbot failure ( explanation msg164973)Senthil Kumaran2012-07-081-1/+1
| |
* | Fix issue14826 - make urllib.request.Request quoted url consistent with ↵Senthil Kumaran2012-07-081-1/+2
|\ \ | |/ | | | | | | | | URLOpener open method. Patch contributed by Stephen Thorne.
| * Fix issue14826 - make urllib.request.Request quoted url consistent with ↵Senthil Kumaran2012-07-081-1/+2
| | | | | | | | | | | | URLOpener open method. Patch contributed by Stephen Thorne.
| * 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
| | | | | | | | | | | | the default certificate store. Initial patch by James Oakley.
* | 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 ↵Senthil Kumaran2012-05-151-1/+1
|\ \ | |/ | | | | HTTP Basic Authentation in urllib2.
| * Issue #12541: Be lenient with quotes around Realm field of HTTP Basic ↵Senthil Kumaran2012-05-151-1/+1
| | | | | | | | | | | | Authentation in urllib2. G: changed Misc/NEWS
* | 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 ↵Senthil Kumaran2012-03-141-8/+72
| | | | | | | | takes, block number, block read size, file_size
* | 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 ↵Senthil Kumaran2012-01-141-0/+2
|\ \ | |/ | | | | during Basic Authentication.
| * Fix Issue #13642: Unquote before b64encoding user:password during Basic ↵Senthil Kumaran2012-01-141-3/+2
| | | | | | | | Authentication.
* | 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
|\ \ | |/ | | | | redirection or an error.
| * Issue #8035: urllib: Fix a bug where the client could remain stuck after aCharles-François Natali2011-12-181-2/+0
| | | | | | | | redirection or an error.
* | '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
| | | | | | | | the relevant module. Other cleanup improvements. Patch by flox.
* | merge from 3.2 - Fix issue 10817 - Fix urlretrieve function to raise ↵Senthil Kumaran2011-10-311-2/+2
|\ \ | |/ | | | | | | | | ContentTooShortError even when reporthook is None. Patch by Jyrki Pulliainen.
| * Fix issue 10817 - Fix urlretrieve function to raise ContentTooShortErrorSenthil Kumaran2011-10-311-2/+2
| | | | | | | | even when reporthook is None. Patch by Jyrki Pulliainen.
* | urllib.request - syntax changes enhancing readability. By Éric AraujoSenthil Kumaran2011-10-191-13/+12
|\ \ | |/
| * urllib.request - syntax changes enhancing readability. By Éric AraujoSenthil Kumaran2011-10-191-11/+10
| |
* | Fix closes issue 1673007 urllib.request to support HEAD requests with a new ↵Senthil Kumaran2011-10-161-2/+7
| | | | | | | | method arg.
* | PEP 3151 / issue #12555: reworking the OS and IO exception hierarchy.Antoine Pitrou2011-10-121-0/+2
| |
* | merge from 3.2. Issue13104 - Fix urllib.request.thishost() utility function.Senthil Kumaran2011-10-051-1/+1
|\ \ | |/
| * Issue13104 - Fix urllib.request.thishost() utility function.Senthil Kumaran2011-10-051-1/+1
| |
* | merge from 3.2 - Fix closes issue12698 - make the no_proxy environment ↵Senthil Kumaran2011-08-061-1/+2
|\ \ | |/ | | | | variable handling a bit lenient (accomodate spaces in between the items)
| * Fix closes issue12698 - make the no_proxy environment variable handling a ↵Senthil Kumaran2011-08-061-1/+2
| | | | | | | | bit lenient (accomodate spaces in between the items)
* | merge from 3.2 - Correcting issue 12576 fix, which resulted in buildbot ↵Senthil Kumaran2011-07-271-6/+3
|\ \ | |/ | | | | failures.
| * Correcting issue 12576 fix, which resulted in buildbot failures.Senthil Kumaran2011-07-271-6/+3
| |
* | merge from 3.2 - Fix closes Issue12576 - fix urlopen behavior on sites which ↵Senthil Kumaran2011-07-271-3/+6
|\ \ | |/ | | | | do not send (or obsfuscates) Connection: Close header.
| * Fix closes Issue12576 - fix urlopen behavior on sites which do not send (or ↵Senthil Kumaran2011-07-271-3/+6
| | | | | | | | obsfuscates) Connection: Close header.
* | Merge: #10883: Fix socket leaks in urllib.request.Nadeem Vawda2011-07-231-4/+26
|\ \ | |/ | | | | | | | | | | | | * 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 Vawda2011-07-231-4/+26
| | | | | | | | | | | | | | | | * 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.requestVictor Stinner2011-06-171-0/+2
|\ \ | |/ | | | | | | | | 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.requestVictor Stinner2011-06-171-0/+2
| | | | | | | | | | | | 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 aSenthil Kumaran2011-05-111-8/+17
| | | | | | | | ValueError when presented with an unsupported Authentication Scheme.
* | merge from 3.2Senthil Kumaran2011-04-121-3/+6
|\ \ | |/
| * merge from 3.1Senthil Kumaran2011-04-121-3/+6
| |\
| | * Fix Issue11703 - urllib2.geturl() does not return correct url when the ↵Senthil Kumaran2011-04-121-3/+6
| | | | | | | | | | | | original url contains #fragment. Patch Contribution by Santoso Wijaya.