summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
diff options
context:
space:
mode:
authorDong-hee Na <donghee.na92@gmail.com>2020-03-14 14:12:01 (GMT)
committerGitHub <noreply@github.com>2020-03-14 14:12:01 (GMT)
commitda52be47690da0d9f78d0dce9ee5c3e4dbef49e1 (patch)
tree12cd6fb0d3121d8c06645d231fa279c1f157768f /Doc/whatsnew
parentb81f40f0adae3b1d1e57f9a89940ba827b9ede70 (diff)
downloadcpython-da52be47690da0d9f78d0dce9ee5c3e4dbef49e1.zip
cpython-da52be47690da0d9f78d0dce9ee5c3e4dbef49e1.tar.gz
cpython-da52be47690da0d9f78d0dce9ee5c3e4dbef49e1.tar.bz2
bpo-39509: Update HTTP status code to follow IANA (GH-18294)
Add status codes 103 EARLY_HINTS and 425 TOO_EARLY.
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r--Doc/whatsnew/3.9.rst6
1 files changed, 6 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.9.rst b/Doc/whatsnew/3.9.rst
index fc91870..b078e79 100644
--- a/Doc/whatsnew/3.9.rst
+++ b/Doc/whatsnew/3.9.rst
@@ -232,6 +232,12 @@ Added a new function :func:`gc.is_finalized` to check if an object has been
finalized by the garbage collector. (Contributed by Pablo Galindo in
:issue:`39322`.)
+http
+----
+
+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
-------