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.

Author julienc
Recipients julienc
Date 2017-06-02.12:50:31
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1496407832.3.0.808781068022.issue30553@psf.upfronthosting.co.za>
In-reply-to
Content
The `http.HTTPStatus` class provides constants for most of the HTTP status codes.
Status code 421 was added by the RFC 7540 (HTTP/2), and is not part of this class. It is described as follows:

> The 421 (Misdirected Request) status code indicates that the request
> was directed at a server that is not able to produce a response.
> This can be sent by a server that is not configured to produce
> responses for the combination of scheme and authority that are
> included in the request URI.

Would it be possible to create the corresponding constant in `http.HTTPStatus`?

For reference:
* Status code 421 in the RFC 7540:
    https://tools.ietf.org/html/rfc7540#section-9.1.2
* Documentation on the HTTPStatus class in python 3.6:
    https://docs.python.org/3/library/http.html#http-status-codes
* Another opened issue relative to the status code 451 currently pending review:
    https://bugs.python.org/issue26589
History
Date User Action Args
2017-06-02 12:50:32juliencsetrecipients: + julienc
2017-06-02 12:50:32juliencsetmessageid: <1496407832.3.0.808781068022.issue30553@psf.upfronthosting.co.za>
2017-06-02 12:50:32julienclinkissue30553 messages
2017-06-02 12:50:31julienccreate