Issue #23442: Rename two member names to stay backward compatible

with the constants in http.client.

Initial patch by Demian Brecht.
This commit is contained in:
Berker Peksag 2015-02-20 14:57:31 +02:00
parent 79d8f3f123
commit abbf0f40bb
2 changed files with 65 additions and 4 deletions

View file

@ -93,8 +93,8 @@ class HTTPStatus(IntEnum):
'URI is too long')
UNSUPPORTED_MEDIA_TYPE = (415, 'Unsupported Media Type',
'Entity body in unsupported format')
REQUEST_RANGE_NOT_SATISFIABLE = (416,
'Request Range Not Satisfiable',
REQUESTED_RANGE_NOT_SATISFIABLE = (416,
'Requested Range Not Satisfiable',
'Cannot satisfy request range')
EXPECTATION_FAILED = (417, 'Expectation Failed',
'Expect condition could not be satisfied')
@ -107,8 +107,8 @@ class HTTPStatus(IntEnum):
TOO_MANY_REQUESTS = (429, 'Too Many Requests',
'The user has sent too many requests in '
'a given amount of time ("rate limiting")')
REQUEST_HEADER_FIELD_TOO_LARGE = (431,
'Request Header Field Too Large',
REQUEST_HEADER_FIELDS_TOO_LARGE = (431,
'Request Header Fields Too Large',
'The server is unwilling to process the request because its header '
'fields are too large')