mirror of
https://github.com/python/cpython.git
synced 2025-10-01 12:52:18 +00:00
[3.14] gh-134835: Remove outdated list from howto/urllib2.rst
(GH-134844) (#134984)
gh-134835: Remove outdated list from `howto/urllib2.rst` (GH-134844)
🫖
(cherry picked from commit 3704171415
)
Co-authored-by: Stan Ulbrych <89152624+StanFromIreland@users.noreply.github.com>
This commit is contained in:
parent
f734531bbe
commit
890607fa05
1 changed files with 19 additions and 67 deletions
|
@ -245,75 +245,27 @@ codes in the 100--299 range indicate success, you will usually only see error
|
||||||
codes in the 400--599 range.
|
codes in the 400--599 range.
|
||||||
|
|
||||||
:attr:`http.server.BaseHTTPRequestHandler.responses` is a useful dictionary of
|
:attr:`http.server.BaseHTTPRequestHandler.responses` is a useful dictionary of
|
||||||
response codes in that shows all the response codes used by :rfc:`2616`. The
|
response codes that shows all the response codes used by :rfc:`2616`.
|
||||||
dictionary is reproduced here for convenience ::
|
An excerpt from the dictionary is shown below ::
|
||||||
|
|
||||||
# Table mapping response codes to messages; entries have the
|
|
||||||
# form {code: (shortmessage, longmessage)}.
|
|
||||||
responses = {
|
responses = {
|
||||||
100: ('Continue', 'Request received, please continue'),
|
...
|
||||||
101: ('Switching Protocols',
|
<HTTPStatus.OK: 200>: ('OK', 'Request fulfilled, document follows'),
|
||||||
'Switching to new protocol; obey Upgrade header'),
|
...
|
||||||
|
<HTTPStatus.FORBIDDEN: 403>: ('Forbidden',
|
||||||
200: ('OK', 'Request fulfilled, document follows'),
|
'Request forbidden -- authorization will '
|
||||||
201: ('Created', 'Document created, URL follows'),
|
'not help'),
|
||||||
202: ('Accepted',
|
<HTTPStatus.NOT_FOUND: 404>: ('Not Found',
|
||||||
'Request accepted, processing continues off-line'),
|
'Nothing matches the given URI'),
|
||||||
203: ('Non-Authoritative Information', 'Request fulfilled from cache'),
|
...
|
||||||
204: ('No Content', 'Request fulfilled, nothing follows'),
|
<HTTPStatus.IM_A_TEAPOT: 418>: ("I'm a Teapot",
|
||||||
205: ('Reset Content', 'Clear input form for further input.'),
|
'Server refuses to brew coffee because '
|
||||||
206: ('Partial Content', 'Partial content follows.'),
|
'it is a teapot'),
|
||||||
|
...
|
||||||
300: ('Multiple Choices',
|
<HTTPStatus.SERVICE_UNAVAILABLE: 503>: ('Service Unavailable',
|
||||||
'Object has several resources -- see URI list'),
|
'The server cannot process the '
|
||||||
301: ('Moved Permanently', 'Object moved permanently -- see URI list'),
|
'request due to a high load'),
|
||||||
302: ('Found', 'Object moved temporarily -- see URI list'),
|
...
|
||||||
303: ('See Other', 'Object moved -- see Method and URL list'),
|
|
||||||
304: ('Not Modified',
|
|
||||||
'Document has not changed since given time'),
|
|
||||||
305: ('Use Proxy',
|
|
||||||
'You must use proxy specified in Location to access this '
|
|
||||||
'resource.'),
|
|
||||||
307: ('Temporary Redirect',
|
|
||||||
'Object moved temporarily -- see URI list'),
|
|
||||||
|
|
||||||
400: ('Bad Request',
|
|
||||||
'Bad request syntax or unsupported method'),
|
|
||||||
401: ('Unauthorized',
|
|
||||||
'No permission -- see authorization schemes'),
|
|
||||||
402: ('Payment Required',
|
|
||||||
'No payment -- see charging schemes'),
|
|
||||||
403: ('Forbidden',
|
|
||||||
'Request forbidden -- authorization will not help'),
|
|
||||||
404: ('Not Found', 'Nothing matches the given URI'),
|
|
||||||
405: ('Method Not Allowed',
|
|
||||||
'Specified method is invalid for this server.'),
|
|
||||||
406: ('Not Acceptable', 'URI not available in preferred format.'),
|
|
||||||
407: ('Proxy Authentication Required', 'You must authenticate with '
|
|
||||||
'this proxy before proceeding.'),
|
|
||||||
408: ('Request Timeout', 'Request timed out; try again later.'),
|
|
||||||
409: ('Conflict', 'Request conflict.'),
|
|
||||||
410: ('Gone',
|
|
||||||
'URI no longer exists and has been permanently removed.'),
|
|
||||||
411: ('Length Required', 'Client must specify Content-Length.'),
|
|
||||||
412: ('Precondition Failed', 'Precondition in headers is false.'),
|
|
||||||
413: ('Request Entity Too Large', 'Entity is too large.'),
|
|
||||||
414: ('Request-URI Too Long', 'URI is too long.'),
|
|
||||||
415: ('Unsupported Media Type', 'Entity body in unsupported format.'),
|
|
||||||
416: ('Requested Range Not Satisfiable',
|
|
||||||
'Cannot satisfy request range.'),
|
|
||||||
417: ('Expectation Failed',
|
|
||||||
'Expect condition could not be satisfied.'),
|
|
||||||
|
|
||||||
500: ('Internal Server Error', 'Server got itself in trouble'),
|
|
||||||
501: ('Not Implemented',
|
|
||||||
'Server does not support this operation'),
|
|
||||||
502: ('Bad Gateway', 'Invalid responses from another server/proxy.'),
|
|
||||||
503: ('Service Unavailable',
|
|
||||||
'The server cannot process the request due to a high load'),
|
|
||||||
504: ('Gateway Timeout',
|
|
||||||
'The gateway server did not receive a timely response'),
|
|
||||||
505: ('HTTP Version Not Supported', 'Cannot fulfill request.'),
|
|
||||||
}
|
}
|
||||||
|
|
||||||
When an error is raised the server responds by returning an HTTP error code
|
When an error is raised the server responds by returning an HTTP error code
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue