Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #26553: Capitalization of HTTP, HTTPS, FTP, and URL | Martin Panter | 2016-05-28 | 1 | -4/+4 |
| | | | | Patch by Anish Shah and Aatish Neupane. | ||||
* | backport fix for Issue #26804. | Senthil Kumaran | 2016-04-25 | 1 | -0/+2 |
| | | | | | urllib.request will prefer lower_case proxy environment variables over UPPER_CASE or Mixed_Case ones. | ||||
* | Issue #26778: Fixed "a/an/and" typos in code comment and documentation. | Serhiy Storchaka | 2016-04-17 | 1 | -1/+1 |
| | |||||
* | Issue #24525: Add missing word. Patch by Vincent Legoll. | Terry Jan Reedy | 2015-07-03 | 1 | -1/+1 |
| | |||||
* | recommend requests library (closes #23989) | Benjamin Peterson | 2015-04-20 | 1 | -0/+5 |
| | | | | Patch by Van Lindberg. | ||||
* | give urllib.urlopen a context parameter (closes #22927) | Benjamin Peterson | 2014-11-24 | 1 | -4/+14 |
| | |||||
* | #19906: clarify note in urllib docs. | Ezio Melotti | 2014-02-10 | 1 | -2/+3 |
| | |||||
* | # 1722 - Add a note on urllib helper functions like splittype, splithost etc. | Senthil Kumaran | 2013-05-02 | 1 | -0/+7 |
| | |||||
* | #15543: reflow paragraphs. | R David Murray | 2012-08-15 | 1 | -10/+11 |
| | |||||
* | #15543: glossary entry for and 'universal newlines', and links to it. | R David Murray | 2012-08-15 | 1 | -1/+1 |
| | | | | Patch by Chris Jerdonek. | ||||
* | Use Python 3 instead of 3.0. | Ezio Melotti | 2012-05-03 | 1 | -4/+4 |
| | |||||
* | port to 2.7 - Issue9637 - Details that case of Proxy env var does not matter. | Senthil Kumaran | 2012-01-10 | 1 | -4/+4 |
| | |||||
* | English fixup, from Mike MacCana on docs@ | Sandro Tosi | 2011-08-12 | 1 | -1/+1 |
| | |||||
* | #12389: fix missing space at sentence end. | R David Murray | 2011-06-23 | 1 | -1/+1 |
| | |||||
* | Issue #11855: Apply missing formatting for urlretrieve | Eli Bendersky | 2011-04-16 | 1 | -5/+5 |
| | |||||
* | Fix typo in class name | Éric Araujo | 2011-03-20 | 1 | -1/+1 |
| | |||||
* | Merged revisions 85101 via svnmerge from | Antoine Pitrou | 2010-09-29 | 1 | -0/+4 |
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r85101 | antoine.pitrou | 2010-09-29 13:24:21 +0200 (mer., 29 sept. 2010) | 3 lines Issue #9983: warn that urllib and httplib don't perform SSL certificate validation. ........ | ||||
* | Merged revisions 83900 via svnmerge from | Senthil Kumaran | 2010-08-09 | 1 | -2/+2 |
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r83900 | senthil.kumaran | 2010-08-10 01:23:52 +0530 (Tue, 10 Aug 2010) | 3 lines Fix Issue7007 - Use percent-encoded consistently instead of URL Encoded variations. Docs changed. ........ | ||||
* | Reverting the checkin made in revision 82940, as it was adding new ↵ | Senthil Kumaran | 2010-07-22 | 1 | -19/+3 |
| | | | | | | parameters to quote function in a bugfix release. Discussed in issue1712522 | ||||
* | Fixing Issue1712522 - urllib.quote to support Unicode. The default | Senthil Kumaran | 2010-07-18 | 1 | -3/+19 |
| | | | | encoding='utf-8' and errors='strict'. | ||||
* | Documentation Fix: urllib.urlopen.info uses mimetools.Message, not ↵ | Senthil Kumaran | 2010-06-29 | 1 | -1/+1 |
| | | | | httplib.HTTPMessage. | ||||
* | fix sphinx warning with an extra spacev2.7rc1 | Benjamin Peterson | 2010-06-06 | 1 | -1/+1 |
| | |||||
* | remove extra space | Benjamin Peterson | 2010-06-06 | 1 | -1/+1 |
| | |||||
* | Fix issue8788 - description of doseq parameter in urllib.urlencode | Senthil Kumaran | 2010-06-02 | 1 | -11/+13 |
| | |||||
* | Fixing issue5475 : urllib2.getproxies not documented | Senthil Kumaran | 2010-02-26 | 1 | -0/+9 |
| | |||||
* | Fix for Issue7155 - urllib do not document default use of system proxy ↵ | Senthil Kumaran | 2009-10-18 | 1 | -2/+4 |
| | | | | configuration | ||||
* | Doc fix for the issue2637. | Senthil Kumaran | 2009-08-31 | 1 | -3/+4 |
| | |||||
* | Clarify quote_plus() usage. | Georg Brandl | 2009-07-28 | 1 | -2/+3 |
| | |||||
* | #3427: document correct return type for urlopen().info(). | Georg Brandl | 2009-03-31 | 1 | -1/+1 |
| | |||||
* | Remove trailing whitespace. | Georg Brandl | 2009-01-03 | 1 | -1/+1 |
| | |||||
* | Issue 600362: Relocated parse_qs() and parse_qsl(), from the cgi module | Facundo Batista | 2008-09-03 | 1 | -1/+1 |
| | | | | | to the urlparse one. Added a PendingDeprecationWarning in the old module, it will be deprecated in the future. Docs and tests updated. | ||||
* | Handle urllib's renaming for Python 3.0: | Brett Cannon | 2008-07-02 | 1 | -0/+11 |
| | | | | | | | | * Deprecate urllib.urlopen() in favor of urllib2.urlopen() for 3.0. * Update docs to mention split/rename of the module and deprecation of urlopen(). Changes to lib2to3 are in a separate commit. Work is for issue #2885. | ||||
* | Remove obsolete paragraph. #2288. | Georg Brandl | 2008-03-14 | 1 | -4/+0 |
| | |||||
* | #856047: respect the ``no_proxy`` env var when checking for proxies | Georg Brandl | 2008-01-20 | 1 | -0/+9 |
| | | | | | in urllib and using the other ``_proxy`` env vars. Original patch by Donovan Baarda. | ||||
* | #1178141: add addinfourl.code to get http status code from urllib. | Georg Brandl | 2008-01-20 | 1 | -5/+9 |
| | |||||
* | Restructure urllib doc structure. | Georg Brandl | 2008-01-07 | 1 | -73/+65 |
| | |||||
* | correct email address | Skip Montanaro | 2007-12-08 | 1 | -1/+1 |
| | |||||
* | Add :term:s for iterator. | Georg Brandl | 2007-10-21 | 1 | -1/+1 |
| | |||||
* | Move the 2.6 reST doc tree in place. | Georg Brandl | 2007-08-15 | 1 | -0/+471 |