summaryrefslogtreecommitdiffstats
path: root/Doc/library/urllib.error.rst
Commit message (Collapse)AuthorAgeFilesLines
* [3.12] docs: module page titles should not start with a link to themselves ↵Miss Islington (bot)2024-05-081-2/+2
| | | | | | | | (GH-117099) (#118791) docs: module page titles should not start with a link to themselves (GH-117099) (cherry picked from commit bcb435ee8ff41b5ec5d879ee0b6651f146a66151) Co-authored-by: Ned Batchelder <ned@nedbatchelder.com>
* [3.12] gh-110497: Add note about `OSError` being an alias to `IOError` in ↵Miss Islington (bot)2023-10-091-2/+2
| | | | | | | | docs (GH-110498) (#110546) gh-110497: Add note about `OSError` being an alias to `IOError` in docs (GH-110498) (cherry picked from commit 5e7edac7717bfe5f3c533d83ddd0f564db8de40b) Co-authored-by: Nikita Sobolev <mail@sobolevn.me>
* [3.12] gh-101100: Sphinx warnings: pick the low hanging fruits (GH-107386) ↵Serhiy Storchaka2023-07-291-2/+4
| | | | | (GH-107419) (cherry picked from commit f2d07d3289947d10b065b2bb7670c8fb6b6582f2)
* gh-101536: [docs] Improve attributes of `urllib.error.HTTPError` (#101612)Nikita Sobolev2023-02-181-1/+12
| | | | | * gh-101536: [docs] Improve attributes of `urllib.error.HTTPError` * Address review
* bpo-33641: Convert RFC references into links. (GH-7103)Serhiy Storchaka2018-05-311-2/+1
| | | | 85% of them are already links.
* Issue #22558: Add remaining doc links to source code for Python-coded modules.Terry Jan Reedy2016-06-111-0/+4
| | | | | Reformat header above separator line (added if missing) to a common format. Patch by Yoni Lavi.
* whatsnew: HTTPError.headers (#15701).R David Murray2014-03-131-1/+1
|
* Improve #19204: Improved cross-references in the urllib package documentation.Serhiy Storchaka2013-10-131-3/+5
|\
| * Improve #19204: Improved cross-references in the urllib package documentation.Serhiy Storchaka2013-10-131-3/+5
| |
* | Fix Issue15701 : add .headers attribute to urllib.error.HTTPErrorSenthil Kumaran2012-12-101-0/+7
|/
* merge from 3.2 - reason attribute for urllib.error.HTTPErrorSenthil Kumaran2012-12-091-0/+4
|\
| * Fix issue13211 - Document the reason attribute for urllib.error.HTTPErrorSenthil Kumaran2012-12-091-0/+4
| |
* | Replace mentions of IOErrorAntoine Pitrou2011-10-121-4/+7
| |
* | Replace mentions of socket.error.Antoine Pitrou2011-10-121-2/+1
|/
* Last round of adapting style of documenting argument default values.Georg Brandl2009-09-161-1/+1
|
* Change email address.Jeremy Hylton2009-03-311-1/+1
|
* Review the doc changes for the urllib package creation.Georg Brandl2008-06-231-21/+21
|
* Documentation updates for urllib package. Modified the documentation for theSenthil Kumaran2008-06-231-0/+48
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.