summaryrefslogtreecommitdiffstats
path: root/Doc/howto/urllib2.rst
Commit message (Collapse)AuthorAgeFilesLines
* gh-91838: Use HTTPS links in docs for resources which redirect to HTTPS ↵Serhiy Storchaka2022-08-041-1/+1
| | | | | | | | | | (GH-95527) If an HTTP link is redirected to a same looking HTTPS link, the latter can be used directly without changes in readability and behavior. It protects from a men-in-the-middle attack. This change does not affect Python examples.
* Docs: remove redundant "adverb-adjective" hyphens from compound modifiers ↵Ned Batchelder2022-07-051-1/+1
| | | | | (GH-94551) Discussion: https://discuss.python.org/t/slight-grammar-fix-throughout-adverbs-dont-need-hyphen/17021
* gh-93851: Fix all broken links in Doc/ (GH-93853)Oleg Iarygin2022-06-211-3/+3
|
* Simple typo fix (GH-24448)Andrew Tennikoff2021-02-051-1/+1
|
* Revert "Fix all Python Cookbook links (#22205)" (GH-22424)Andre Delfino2020-09-271-1/+1
| | | This commit reverts commit ac0333e1e117b7f61ed7ef1dbcdb6e515ada603b as the original links are working again and they provide extended features such as comments and alternative versions.
* Fix all Python Cookbook links (#22205)Andre Delfino2020-09-151-1/+1
|
* bpo-33641: Convert RFC references into links. (GH-7103)Serhiy Storchaka2018-05-311-2/+2
| | | | 85% of them are already links.
* Remove to-be-deprecated urllib.request.urlretrieve function reference (#6454)Andrés Delfino2018-04-161-4/+12
|
* Improve highlighting of some code blocks. (GH-6401)Serhiy Storchaka2018-04-081-1/+3
|
* bpo-25910: Link redirections in docs (#1933)Sanyam Khurana2018-01-201-1/+1
| | | Fixes some redirection links in docs.
* bpo-30380: Fix Sphinx 1.6.1 warnings. (#1613)Serhiy Storchaka2017-05-161-5/+5
| | | | | | | | * Use explicit numbering for footnotes referred by explicit number. * Restore missed footnote reference in stdtypes.rst. * Fix literal strings formatting in howto/urllib2.rst. * Update susp-ignored.csv for zipapp.rst. * Fix suspicious mark up in Misc/NEWS.
* Issue #28820: Fix spelling of “practice” as a nounMartin Panter2016-12-101-1/+1
|
* Issue #28763: Use double hyphens (rendered as en-dashes) in numerical rangesSerhiy Storchaka2016-11-261-2/+2
| | | | in the documentation.
* [merge from 3.4] - Prevent HTTPoxy attack (CVE-2016-1000110)Senthil Kumaran2016-07-311-0/+5
|\ | | | | | | | | | | | | Ignore the HTTP_PROXY variable when REQUEST_METHOD environment is set, which indicates that the script is in CGI mode. Issue #27568 Reported and patch contributed by Rémi Rampin.
| * [merge from 3.3] Prevent HTTPoxy attack (CVE-2016-1000110)Senthil Kumaran2016-07-311-0/+5
| |\ | | | | | | | | | | | | | | | | | | Ignore the HTTP_PROXY variable when REQUEST_METHOD environment is set, which indicates that the script is in CGI mode. Issue #27568 Reported and patch contributed by Rémi Rampin.
| | * Prevent HTTPoxy attack (CVE-2016-1000110)Senthil Kumaran2016-07-311-0/+5
| | | | | | | | | | | | | | | | | | | | | Ignore the HTTP_PROXY variable when REQUEST_METHOD environment is set, which indicates that the script is in CGI mode. Issue #27568 Reported and patch contributed by Rémi Rampin.
* | | Issue #23921: Standardized documentation whitespace formatting.Serhiy Storchaka2016-05-101-6/+6
| | | | | | | | | | | | Original patch by James Edwards.
* | | Issue #26736: Used HTTPS for external links in the documentation if possible.Serhiy Storchaka2016-05-071-3/+3
| | |
* | | Correct “an” → “a” with “Unicode”, “user”, “UTF”, etcMartin Panter2016-04-151-1/+1
| | | | | | | | | | | | This affects documentation, code comments, and a debugging messages.
* | | Fix userinfo example presented in urllib2 howto.Senthil Kumaran2016-02-061-1/+1
|/ /
* | Issue #25576: Remove application/x-www-form-urlencoded charset adviceMartin Panter2015-11-241-3/+3
| | | | | | | | | | No charset parameter is standardized for this Content-Type value. Also clarify that urlencode() outputs ASCII.
* | remove reference to PyGoogle (#25145)Benjamin Peterson2015-09-201-2/+1
| | | | | | | | Patch by Bar Harel.
* | use a more modern UA (#25145)Benjamin Peterson2015-09-201-1/+1
| |
* | Issue #12955: Change the urlopen() examples to use context managers where ↵Berker Peksag2015-04-121-8/+8
| | | | | | | | | | | | appropriate. Patch by Martin Panter.
* | Fixing broken links in doc, part 2: howto/Georg Brandl2014-10-291-4/+2
| |
* | Use https:// URLs when referring to python.org hosts.Georg Brandl2014-10-291-1/+1
| |
* | Issue #13689: Remove a dead link from howto/urllib.Berker Peksag2014-07-011-3/+1
| |
* | Removed spaces before colons and semicolons.Serhiy Storchaka2013-12-241-2/+2
|\ \ | |/
| * Removed spaces before colons and semicolons.Serhiy Storchaka2013-12-241-2/+2
| |
* | Removed spaces before commas and periods.Serhiy Storchaka2013-12-231-1/+1
|\ \ | |/
| * Removed spaces before commas and periods.Serhiy Storchaka2013-12-231-1/+1
| |
* | Issue #18758: Fixed and improved cross-references.Serhiy Storchaka2013-10-131-1/+1
|\ \ | |/
| * Issue #18758: Fixed and improved cross-references.Serhiy Storchaka2013-10-131-1/+1
| |
| * #7152: Remove incorrectly added reference to DataHandler.R David Murray2013-04-281-1/+1
|/
* Reflow paragraphs.R David Murray2013-04-281-4/+4
| | | | | I know one of them looks worse, but now it is <80 chars and matches the 2.7 text.
* #7152: Clarify that ProxyHandler is added only if proxy settings are detected.R David Murray2013-04-281-3/+5
| | | | Behavior confirmation and initial patch by Jessica McKellar.
* Fix Issue 15922: make howto/urllib2.rst doctests pass.Senthil Kumaran2012-10-091-15/+14
| | | | Patch by Chris Jerdonek. Address Ezio's review comment.
* Issue #13587: merge with 3.2Sandro Tosi2012-04-241-2/+2
|\
| * Issue #13587: use the right RFC2617 name for WWW-Authenticate; patch by ↵Sandro Tosi2012-04-241-2/+2
| | | | | | | | Aaron Maenpaa
* | cpython:Fix the wrong urllib exampls which use str for POST data. Closes ↵Senthil Kumaran2012-03-151-1/+3
|\ \ | |/ | | | | Issue11261
| * Fix the wrong urllib exampls which use str for POST data. Closes Issue11261Senthil Kumaran2012-03-151-1/+3
| |
* | Issue10050 - urlretrieve uses newer urlopen. reporthook of urlretrieve ↵Senthil Kumaran2012-03-141-0/+7
|/ | | | takes, block number, block read size, file_size
* Fix function name: open -> urlopen.Georg Brandl2011-07-231-1/+1
|
* #7499: Review of Library FAQ by Florent Xicluna.Georg Brandl2009-12-191-0/+2
|
* Merged revisions 74209 via svnmerge fromGeorg Brandl2009-07-261-4/+3
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r74209 | georg.brandl | 2009-07-26 16:37:28 +0200 (So, 26 Jul 2009) | 1 line builtin -> built-in. ........
* Merged revisions 74148 via svnmerge fromEzio Melotti2009-07-211-1/+1
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r74148 | ezio.melotti | 2009-07-21 23:18:27 +0300 (Tue, 21 Jul 2009) | 1 line #6536 fixed typo ........
* Recorded merge of revisions 72830 via svnmerge fromGeorg Brandl2009-05-221-1/+1
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r72830 | georg.brandl | 2009-05-22 12:40:00 +0200 (Fr, 22 Mai 2009) | 1 line #6086: fix spelling and use a better exception to catch. ........
* Examples correction in urllib2 howto. Michael FoordMichael Foord2009-05-121-5/+5
|
* Merged revisions 68162,68166,68171,68176,68195-68196,68210,68232 via ↵Georg Brandl2009-01-031-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r68162 | ronald.oussoren | 2009-01-02 16:06:00 +0100 (Fri, 02 Jan 2009) | 3 lines Fix for issue 4472 is incompatible with Cygwin, this patch should fix that. ........ r68166 | benjamin.peterson | 2009-01-02 19:26:23 +0100 (Fri, 02 Jan 2009) | 1 line document PyMemberDef ........ r68171 | georg.brandl | 2009-01-02 21:25:14 +0100 (Fri, 02 Jan 2009) | 3 lines #4811: fix markup glitches (mostly remains of the conversion), found by Gabriel Genellina. ........ r68176 | andrew.kuchling | 2009-01-02 22:00:35 +0100 (Fri, 02 Jan 2009) | 1 line Add various items ........ r68195 | georg.brandl | 2009-01-03 14:45:15 +0100 (Sat, 03 Jan 2009) | 2 lines Remove useless string literal. ........ r68196 | georg.brandl | 2009-01-03 15:29:53 +0100 (Sat, 03 Jan 2009) | 2 lines Fix indentation. ........ r68210 | georg.brandl | 2009-01-03 20:10:12 +0100 (Sat, 03 Jan 2009) | 2 lines Set eol-style correctly for mp_distributing.py. ........ r68232 | georg.brandl | 2009-01-03 22:52:16 +0100 (Sat, 03 Jan 2009) | 2 lines Grammar fix. ........
* Remove trailing whitespace.Georg Brandl2009-01-031-25/+25
|