summaryrefslogtreecommitdiffstats
path: root/Doc/library/http.rst
Commit message (Collapse)AuthorAgeFilesLines
* Issue #22558: Add remaining doc links to source code for Python-coded modules.Terry Jan Reedy2016-06-111-1/+3
| | | | | Reformat header above separator line (added if missing) to a common format. Patch by Yoni Lavi.
* Issue #26736: Used HTTPS for external links in the documentation if possible.Serhiy Storchaka2016-05-071-1/+1
|
* Issue #20898: Enum names are only available in the http.client module as ↵Berker Peksag2015-01-201-4/+3
| | | | | | constants. Noticed by Martin Panter.
* Issue #20898: Add a "HTTP status codes" section to avoid duplication in HTTP ↵Berker Peksag2015-01-201-83/+77
| | | | | | | | | docs. This commit also removes a couple of non-standard status codes. They were added as part of edf669b13482, so there is no backwards compatibility issue. Patch by Demian Brecht.
* Remove the redundant second argument of versionadded directive.Berker Peksag2014-12-251-3/+2
| | | | | The versionadded directive is already placed in the scope of the HTTPStatus documentation.
* Issue #21793: Added http.HTTPStatus enums (i.e. HTTPStatus.OK,Serhiy Storchaka2014-12-231-1/+120
| | | | HTTPStatus.NOT_FOUND). Patch by Demian Brecht.
* Closes #11710: create "landing pages" (/library/package.html) for those ↵Georg Brandl2012-10-061-0/+11
packages that have no documented content themselves, e.g. "urllib" or "http".