Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix #17967 - Fix related to regression on Windows. | Senthil Kumaran | 2013-06-02 | 1 | -1/+2 |
| | | | | | os.path.join(*self.dirs) produces an invalid path on windows. ftp paths are always forward-slash seperated like this. /pub/dir. | ||||
* | Fix thishost helper funtion in urllib. Returns the ipaddress of localhost when | Senthil Kumaran | 2013-06-01 | 1 | -1/+4 |
| | | | | | hostname is resolvable by socket.gethostname for local machine. This all fixes certain freebsd builtbot failures. | ||||
* | Fix #17967: For ftp urls CWD to target instead of hopping to each directory | Senthil Kumaran | 2013-06-01 | 1 | -2/+1 |
| | | | | | towards target. This fixes a bug where target is accessible, but parent directories are restricted. | ||||
* | #17403: urllib.parse.robotparser normalizes the urls before adding to ruleline. | Senthil Kumaran | 2013-05-29 | 1 | -0/+1 |
| | | | | This helps in handling certain types invalid urls in a conservative manner. | ||||
* | use correct format code for exceptions | Benjamin Peterson | 2013-05-13 | 1 | -2/+2 |
| | |||||
* | Issue #17483: 3.3 Branch - Remove unreachable code in urllib.request | Senthil Kumaran | 2013-04-05 | 1 | -9/+5 |
| | |||||
* | Use repr when printing unknown url type in urlopen. | R David Murray | 2013-04-03 | 1 | -1/+1 |
| | |||||
* | Issue #1285086: Get rid of the refcounting hack and speed up | Serhiy Storchaka | 2013-03-14 | 1 | -36/+27 |
|\ | | | | | | | urllib.parse.unquote() and urllib.parse.unquote_to_bytes(). | ||||
| * | Issue #1285086: Get rid of the refcounting hack and speed up | Serhiy Storchaka | 2013-03-14 | 1 | -36/+27 |
| | | | | | | | | urllib.parse.unquote() and urllib.parse.unquote_to_bytes(). | ||||
* | | Fix issue16713 - tel url parsing with params | Senthil Kumaran | 2012-12-24 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Fix issue16713 - tel url parsing with params | Senthil Kumaran | 2012-12-24 | 1 | -1/+1 |
| | | |||||
* | | merge from 3.2 | Senthil Kumaran | 2012-12-23 | 1 | -0/+4 |
|\ \ | |/ | | | | | 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 | -0/+4 |
| | | | | | | | | to return headers correctly | ||||
* | | Fixes issue #16409: The reporthook callback made by the legacy | Gregory P. Smith | 2012-11-10 | 1 | -2/+2 |
| | | | | | | | | | | | | urllib.request.urlretrieve API now properly supplies a constant non-zero block_size as it did in Python 3.2 and 2.7. This matches the behavior of urllib.request.URLopener.retrieve. | ||||
* | | Issue #16250: Fix URLError invocation with proper args | Senthil Kumaran | 2012-10-27 | 1 | -15/+15 |
|\ \ | |/ | |||||
| * | Issue #16250: Fix URLError invocation with proper args. | Senthil Kumaran | 2012-10-27 | 1 | -18/+15 |
| | | |||||
| * | Fix issue #16270: urllib may hang when used for retrieving files via FTP by ↵ | Giampaolo Rodola' | 2012-10-19 | 1 | -6/+0 |
| | | | | | | | | using a context manager. | ||||
* | | Fix issue #16270: urllib may hang when used for retrieving files via FTP by ↵ | Giampaolo Rodola' | 2012-10-19 | 1 | -6/+0 |
| | | | | | | | | using a context manager. | ||||
* | | Closes #9374: merge with 3.2 | Georg Brandl | 2012-08-24 | 1 | -0/+10 |
|\ \ | |/ | |||||
| * | Closes #9374: add back now-unused module attributes; removing them is a ↵ | Georg Brandl | 2012-08-24 | 1 | -0/+10 |
| | | | | | | | | backward compatibility issue, since they have a public-seeming name. | ||||
* | | revert the changes done for issue14826 - quoting witin Request is not desirable. | Senthil Kumaran | 2012-07-09 | 1 | -1/+0 |
|\ \ | |/ | |||||
| * | revert the changes done for issue14826 - quoting witin Request is not desirable. | Senthil Kumaran | 2012-07-09 | 1 | -1/+0 |
| | | |||||
* | | issue 14826 - Address the buildbot failure quote of url is the required ↵ | Senthil Kumaran | 2012-07-08 | 1 | -1/+1 |
|\ \ | |/ | | | | | change ( explanation msg164973) | ||||
| * | issue 14826 - Address the buildbot failure ( explanation msg164973) | Senthil Kumaran | 2012-07-08 | 1 | -1/+1 |
| | | |||||
* | | Fix issue14826 - make urllib.request.Request quoted url consistent with ↵ | Senthil Kumaran | 2012-07-08 | 1 | -1/+2 |
|\ \ | |/ | | | | | | | | | URLOpener open method. Patch contributed by Stephen Thorne. | ||||
| * | Fix issue14826 - make urllib.request.Request quoted url consistent with ↵ | Senthil Kumaran | 2012-07-08 | 1 | -1/+2 |
| | | | | | | | | | | | | URLOpener open method. Patch contributed by Stephen Thorne. | ||||
* | | urllib.parse cleanup. rename keywords used as variables | Senthil Kumaran | 2012-06-29 | 1 | -7/+7 |
|\ \ | |/ | |||||
| * | urllib.parse cleanup. rename keywords used as variables | Senthil Kumaran | 2012-06-29 | 1 | -7/+7 |
| | | |||||
| * | Partial backport of 612f34e31270: fix spacing error in exception message. | Georg Brandl | 2012-06-24 | 1 | -2/+2 |
| | | |||||
* | | urllib.request: fix spacing errors in exception/warning messages. | Georg Brandl | 2012-06-24 | 1 | -5/+5 |
| | | |||||
* | | Issue #14920: Fix the help(urllib.parse) failure on locale C terminals. Just ↵ | Senthil Kumaran | 2012-05-26 | 1 | -1/+1 |
|\ \ | |/ | | | | | have ascii in help msg | ||||
| * | Issue #14920: Fix the help(urllib.parse) failure on locale C terminals. Just ↵ | Senthil Kumaran | 2012-05-26 | 1 | -1/+1 |
| | | | | | | | | have ascii in help msg | ||||
* | | Issue #14036: return None when port in urlparse cross 65535 | Senthil Kumaran | 2012-05-24 | 1 | -0/+3 |
|\ \ | |/ | |||||
| * | Issue #14036: return None when port in urlparse cross 65535 | Senthil Kumaran | 2012-05-24 | 1 | -0/+3 |
| | | |||||
* | | #14072: merge with 3.2. | Ezio Melotti | 2012-05-19 | 1 | -6/+6 |
|\ \ | |/ | |||||
| * | #14072: Fix parsing of tel URIs in urlparse by making the check for ports ↵ | Ezio Melotti | 2012-05-19 | 1 | -6/+6 |
| | | | | | | | | stricter. | ||||
* | | Issue9374 - Generic parsing of query and fragment portion of urls for any scheme | Senthil Kumaran | 2012-05-19 | 1 | -9/+2 |
|\ \ | |/ | |||||
| * | Issue9374 - Generic parsing of query and fragment portion of urls for any scheme | Senthil Kumaran | 2012-05-19 | 1 | -9/+2 |
| | | |||||
* | | Issue #14780: urllib.request.urlopen() now has a `cadefault` argument to use ↵ | Antoine Pitrou | 2012-05-16 | 1 | -4/+7 |
| | | | | | | | | | | | | the default certificate store. Initial patch by James Oakley. | ||||
* | | Issue12541 - Add UserWarning for unquoted realms | Senthil Kumaran | 2012-05-15 | 1 | -0/+3 |
|\ \ | |/ | |||||
| * | Issue12541 - Add UserWarning for unquoted realms | Senthil Kumaran | 2012-05-15 | 1 | -0/+4 |
| | | |||||
* | | merge from 3.2 - Issue #12541: Be lenient with quotes around Realm field of ↵ | Senthil Kumaran | 2012-05-15 | 1 | -1/+1 |
|\ \ | |/ | | | | | HTTP Basic Authentation in urllib2. | ||||
| * | Issue #12541: Be lenient with quotes around Realm field of HTTP Basic ↵ | Senthil Kumaran | 2012-05-15 | 1 | -1/+1 |
| | | | | | | | | | | | | Authentation in urllib2. G: changed Misc/NEWS | ||||
* | | Explain the use of charset parameter with Content-Type header: issue11082 | Senthil Kumaran | 2012-03-16 | 1 | -2/+3 |
|\ \ | |/ | |||||
| * | Explain the use of charset parameter with Content-Type header. Issue11082 | Senthil Kumaran | 2012-03-16 | 1 | -2/+3 |
| | | |||||
* | | port from 3.2 - Fix the urllib closing issue which hangs on particular ftp ↵ | Senthil Kumaran | 2012-03-15 | 1 | -1/+1 |
|\ \ | |/ | | | | | urls/ftp servers. closes issue11199 | ||||
| * | closes Issue #11199: Fix the with urllib which hangs on particular ftp urls. | Senthil Kumaran | 2012-03-15 | 1 | -1/+1 |
| | | |||||
* | | deprecated the old urllib primitives in 3.3 urllib package - issue 10050 | Senthil Kumaran | 2012-03-14 | 1 | -8/+26 |
| | | |||||
* | | Issue10050 - urlretrieve uses newer urlopen. reporthook of urlretrieve ↵ | Senthil Kumaran | 2012-03-14 | 1 | -8/+72 |
| | | | | | | | | takes, block number, block read size, file_size | ||||
* | | merge from 3.2 | Senthil Kumaran | 2012-01-21 | 1 | -0/+2 |
|\ \ | |/ |