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: Update HTTP status code to follow IANA
Type: enhancement Stage: resolved
Components: Library (Lib) Versions: Python 3.9
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: corona10, martin.panter, rhettinger, serhiy.storchaka
Priority: normal Keywords: patch

Created on 2020-01-31 14:50 by corona10, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 18294 merged corona10, 2020-01-31 15:14
Messages (4)
msg361114 - (view) Author: Dong-hee Na (corona10) * (Python committer) Date: 2020-01-31 14:50
status code 103 and 425 is missing.

https://www.iana.org/assignments/http-status-codes/http-status-codes.xhtml
msg361115 - (view) Author: Dong-hee Na (corona10) * (Python committer) Date: 2020-01-31 14:52
See the docs that we follow IANA
https://docs.python.org/3/library/http.html?highlight=iana#http-status-codes
msg364167 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2020-03-14 14:07
RFC 8297: https://tools.ietf.org/html/rfc8297
RFC 8470: https://tools.ietf.org/html/rfc8470
msg364168 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2020-03-14 14:12
New changeset da52be47690da0d9f78d0dce9ee5c3e4dbef49e1 by Dong-hee Na in branch 'master':
bpo-39509: Update HTTP status code to follow IANA (GH-18294)
https://github.com/python/cpython/commit/da52be47690da0d9f78d0dce9ee5c3e4dbef49e1
History
Date User Action Args
2022-04-11 14:59:26adminsetgithub: 83690
2020-03-14 14:12:57serhiy.storchakasetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2020-03-14 14:12:04serhiy.storchakasetmessages: + msg364168
2020-03-14 14:07:44serhiy.storchakasetmessages: - msg364165
2020-03-14 14:07:41serhiy.storchakasetmessages: - msg364166
2020-03-14 14:07:15serhiy.storchakasetmessages: + msg364167
2020-03-14 14:05:48serhiy.storchakasetmessages: + msg364166
2020-03-14 14:05:06serhiy.storchakasetnosy: + serhiy.storchaka
messages: + msg364165
2020-01-31 23:51:14corona10setnosy: + rhettinger
2020-01-31 15:14:08corona10setpull_requests: + pull_request17668
2020-01-31 15:11:04corona10setpull_requests: - pull_request17667
2020-01-31 15:03:44corona10setkeywords: + patch
stage: patch review
pull_requests: + pull_request17667
2020-01-31 14:52:57corona10setmessages: + msg361115
2020-01-31 14:50:49corona10create