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: http library missing HTTP status code 418 "I'm a teapot"
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, trrhodes
Priority: normal Keywords: patch

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

Pull Requests
URL Status Linked Edit
PR 18291 merged trrhodes, 2020-01-31 14:16
Messages (5)
msg361106 - (view) Author: Ross Rhodes (trrhodes) * Date: 2020-01-31 13:32
http library missing HTTP status code 418 "I'm a teapot".
msg361107 - (view) Author: Dong-hee Na (corona10) * (Python committer) Date: 2020-01-31 14:14
I add martin.panter to review this issue as the core developer.
msg361108 - (view) Author: Dong-hee Na (corona10) * (Python committer) Date: 2020-01-31 14:23
IMHO, Although this status code is also listed on the MDN guide,
IANA left 418 as the unassigned code.

ref0: https://developer.mozilla.org/en-US/docs/Web/HTTP/Status
ref1: https://www.iana.org/assignments/http-status-codes/http-status-codes.xhtml
msg361134 - (view) Author: Raymond Hettinger (rhettinger) * (Python committer) Date: 2020-01-31 20:50
https://en.wikipedia.org/wiki/Hyper_Text_Coffee_Pot_Control_Protocol#Save_418_movement
msg364230 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2020-03-15 12:24
New changeset 61ac612e78e4f2625977406fb6f366e0a644673a by Ross in branch 'master':
bpo-39507: Add HTTP status 418 "I'm a Teapot" (GH-18291)
https://github.com/python/cpython/commit/61ac612e78e4f2625977406fb6f366e0a644673a
History
Date User Action Args
2022-04-11 14:59:26adminsetgithub: 83688
2020-03-15 12:25:14serhiy.storchakasetstatus: open -> closed
versions: + Python 3.9
resolution: fixed
components: + Library (Lib)
type: enhancement
stage: patch review -> resolved
2020-03-15 12:24:32serhiy.storchakasetnosy: + serhiy.storchaka
messages: + msg364230
2020-01-31 20:50:48rhettingersetnosy: + rhettinger
messages: + msg361134
2020-01-31 14:23:05corona10setmessages: + msg361108
2020-01-31 14:16:59trrhodessetkeywords: + patch
stage: patch review
pull_requests: + pull_request17665
2020-01-31 14:14:36corona10setnosy: + martin.panter, corona10
messages: + msg361107
2020-01-31 13:32:41trrhodescreate