Issue 26589: Add HTTP Response code 451 (original) (raw)

This issue has been migrated to GitHub: https://github.com/python/cpython/issues/70776

classification

Title: Add HTTP Response code 451
Type: enhancement Stage: resolved
Components: Library (Lib) Versions: Python 3.6

process

Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: rhettinger Nosy List: martin.panter, nharold, r.david.murray, rhettinger
Priority: normal Keywords: patch

Created on 2016-03-18 22:23 by rhettinger, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
code451.diff rhettinger,2016-03-18 22:23 review
doctable.diff nharold,2016-06-01 17:22 update table in http.HTTPStatus docs review
Pull Requests
URL Status Linked Edit
PR 15413 merged rhettinger,2019-08-23 08:06
PR 15436 merged miss-islington,2019-08-23 17:20
Messages (8)
msg262000 - (view) Author: Raymond Hettinger (rhettinger) * (Python committer) Date: 2016-03-18 22:23
https://tools.ietf.org/html/rfc7725
msg266658 - (view) Author: R. David Murray (r.david.murray) * (Python committer) Date: 2016-05-30 01:20
Looks good to me.
msg266665 - (view) Author: Martin Panter (martin.panter) * (Python committer) Date: 2016-05-30 02:22
It seems like this code does get used, so I agree to add it. I think the table in the RST documentation should also be updated, possibly with a versionadded/versionchanged notice.
msg266829 - (view) Author: Nathan Harold (nharold) * Date: 2016-06-01 17:22
Added it to the table at https://docs.python.org/3.6/library/http.html#http-status-codes and put a versionadded notice at the bottom.
msg266950 - (view) Author: Raymond Hettinger (rhettinger) * (Python committer) Date: 2016-06-02 21:07
Thanks Nathan, I'll apply this shortly.
msg266995 - (view) Author: Martin Panter (martin.panter) * (Python committer) Date: 2016-06-02 23:52
Don’t forget to fix the RFC number (see review) :)
msg350318 - (view) Author: Raymond Hettinger (rhettinger) * (Python committer) Date: 2019-08-23 17:19
New changeset 8f080b09953a2d862de5c74edf414a54ea3dbea5 by Raymond Hettinger in branch 'master': bpo-26589: Add http status code 451 (GH-15413) https://github.com/python/cpython/commit/8f080b09953a2d862de5c74edf414a54ea3dbea5
msg350319 - (view) Author: Raymond Hettinger (rhettinger) * (Python committer) Date: 2019-08-23 17:56
New changeset 761e5a7c7f57cf2a09106c0afa038f04de6a9ed2 by Raymond Hettinger (Miss Islington (bot)) in branch '3.8': bpo-26589: Add http status code 451 (GH-15413) (GH-15436) https://github.com/python/cpython/commit/761e5a7c7f57cf2a09106c0afa038f04de6a9ed2
History
Date User Action Args
2022-04-11 14:58:28 admin set github: 70776
2019-08-23 17:57:01 rhettinger set status: open -> closedresolution: fixedstage: patch review -> resolved
2019-08-23 17:56:49 rhettinger set messages: +
2019-08-23 17:20:51 miss-islington set stage: resolved -> patch reviewpull_requests: + <pull%5Frequest15130>
2019-08-23 17:19:19 rhettinger set messages: +
2019-08-23 08:12:30 rhettinger set status: closed -> openresolution: fixed -> (no value)
2019-08-23 08:06:41 rhettinger set pull_requests: + <pull%5Frequest15116>
2019-08-22 22:57:54 rhettinger set status: open -> closedresolution: fixedstage: commit review -> resolved
2016-06-02 23:52:11 martin.panter set messages: +
2016-06-02 21:07:38 rhettinger set assignee: rhettingermessages: +
2016-06-01 17:22:29 nharold set files: + doctable.diffnosy: + nharoldmessages: +
2016-05-30 02:22:52 martin.panter set nosy: + martin.pantermessages: +
2016-05-30 01:20:13 r.david.murray set nosy: + r.david.murraymessages: + stage: patch review -> commit review
2016-03-18 22:23:15 rhettinger create