8000 bpo-39509: Update HTTP status code to follow IANA by corona10 · Pull Request #18294 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

bpo-39509: Update HTTP status code to follow IANA #18294

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Mar 14, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
bpo-39509: Apply code review
  • Loading branch information
corona10 committed Feb 9, 2020
commit a8e9348ca07d2ff2660107c196a045d4df226ab2
4 changes: 2 additions & 2 deletions Doc/whatsnew/3.9.rst
Original file line number Diff line number Diff line change
Expand Up @@ -189,8 +189,8 @@ finalized by the garbage collector. (Contributed by Pablo Galindo in
http
----

HTTP status code ``103 EARLY_HINTS`` and ``425 TOO_EARLY`` are added to
:class:`http.HTTPStatus` (Contributed by Dong-hee Na in :issue:`39509`.)
HTTP status codes ``103 EARLY_HINTS`` and ``425 TOO_EARLY`` are added to
:class:`http.HTTPStatus`. (Contributed by Dong-hee Na in :issue:`39509`.)

imaplib
-------
Expand Down
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
HTTP status code ``103 EARLY_HINTS`` and ``425 TOO_EARLY`` are added to
:class:`http.HTTPStatus` Patch by Dong-hee Na.
HTTP status codes ``103 EARLY_HINTS`` and ``425 TOO_EARLY`` are added to
:class:`http.HTTPStatus`. Patch by Dong-hee Na.
0