aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* 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-301-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-301-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-301-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-051-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-141-1/+3
|\| | | | | | | Issue11261
| * Fix the wrong urllib exampls which use str for POST data. Closes Issue11261Senthil Kumaran2012-03-141-1/+3
| |
* | Issue10050 - urlretrieve uses newer urlopen. reporthook of urlretrieve ↵Senthil Kumaran2012-03-131-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
|
* Merged revisions 66670,66681,66688,66696-66699 via svnmerge fromBenjamin Peterson2008-10-041-11/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r66670 | georg.brandl | 2008-09-28 15:01:36 -0500 (Sun, 28 Sep 2008) | 2 lines Don't show version in title. ........ r66681 | georg.brandl | 2008-09-29 11:51:35 -0500 (Mon, 29 Sep 2008) | 2 lines Update nasm location. ........ r66688 | jesse.noller | 2008-09-29 19:15:45 -0500 (Mon, 29 Sep 2008) | 2 lines issue3770: if SEM_OPEN is 0, disable the mp.synchronize module, rev. Nick Coghlan, Damien Miller ........ r66696 | andrew.kuchling | 2008-09-30 07:31:07 -0500 (Tue, 30 Sep 2008) | 1 line Edits, and add markup ........ r66697 | andrew.kuchling | 2008-09-30 08:00:34 -0500 (Tue, 30 Sep 2008) | 1 line Markup fix ........ r66698 | andrew.kuchling | 2008-09-30 08:00:51 -0500 (Tue, 30 Sep 2008) | 1 line Markup fixes ........ r66699 | andrew.kuchling | 2008-09-30 08:01:46 -0500 (Tue, 30 Sep 2008) | 1 line Markup fixes. (optparse.rst probably needs an entire revision pass.) ........
* Review the doc changes for the urllib package creation.Georg Brandl2008-06-231-18/+20
|
* Documentation updates for urllib package. Modified the documentation for theSenthil Kumaran2008-06-231-66/+69
| | | | | | | | | | | | urllib,urllib2 -> urllib.request,urllib.error urlparse -> urllib.parse RobotParser -> urllib.robotparser Updated tutorial references and other module references (http.client.rst, ftplib.rst,contextlib.rst) Updated the examples in the urllib2-howto Addresses Issue3142.