This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Add PAYLOAD_TOO_LARGE / URI_TOO_LONG (new name in RFC 7231)
Type: enhancement Stage: patch review
Components: Library (Lib) Versions: Python 3.6
process
Status: open Resolution:
Dependencies: Superseder:
Assigned To: Nosy List: ZackerySpytz, martin.panter, spaceone
Priority: normal Keywords: patch

Created on 2015-11-27 00:30 by spaceone, last changed 2022-04-11 14:58 by admin.

Pull Requests
URL Status Linked Edit
PR 22295 open ZackerySpytz, 2020-09-18 05:51
Messages (3)
msg255444 - (view) Author: SpaceOne (spaceone) * Date: 2015-11-27 00:30
Add PAYLOAD_TOO_LARGE status code to http package.
Patch: https://github.com/spaceone/cpython/commit/5d9427a07bde43b523386322b1fc377618eadb76
msg255446 - (view) Author: SpaceOne (spaceone) * Date: 2015-11-27 00:38
Also URI_TOO_LONG has been changed.

https://tools.ietf.org/html/rfc7231#section-6.5.11
https://tools.ietf.org/html/rfc7231#section-6.5.12
msg255447 - (view) Author: Martin Panter (martin.panter) * (Python committer) Date: 2015-11-27 01:54
In general, I’m not sure it is worth adding aliases for various names used in different RFCs. But you could argue that this is appropriate because the old names are unnecessarily long. Another example would be HTTPStatus.REQUESTED_RANGE_NOT_SATISFIABLE vs “Range Not Satisfiable” <https://tools.ietf.org/html/rfc7233#section-4.4>.

If we were to go ahead with this, it would need a documentation update. A test case would also be nice, ensuring that the new name is the “one true” name, and the old name is an alias.
History
Date User Action Args
2022-04-11 14:58:24adminsetgithub: 69925
2020-09-18 05:51:47ZackerySpytzsetkeywords: + patch
nosy: + ZackerySpytz
pull_requests: + pull_request21348
2015-11-27 01:54:54martin.pantersetversions: + Python 3.6
nosy: + martin.panter

messages: + msg255447

type: enhancement
stage: patch review
2015-11-27 00:38:56spaceonesetmessages: + msg255446
title: Add PAYLOAD_TOO_LARGE (new name in RFC 7231) -> Add PAYLOAD_TOO_LARGE / URI_TOO_LONG (new name in RFC 7231)
2015-11-27 00:30:04spaceonecreate