diff options
author | Dong-hee Na <donghee.na92@gmail.com> | 2020-03-14 14:12:01 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-14 14:12:01 (GMT) |
commit | da52be47690da0d9f78d0dce9ee5c3e4dbef49e1 (patch) | |
tree | 12cd6fb0d3121d8c06645d231fa279c1f157768f /Misc | |
parent | b81f40f0adae3b1d1e57f9a89940ba827b9ede70 (diff) | |
download | cpython-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 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2020-02-01-00-03-06.bpo-39509.-YxUSf.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2020-02-01-00-03-06.bpo-39509.-YxUSf.rst b/Misc/NEWS.d/next/Library/2020-02-01-00-03-06.bpo-39509.-YxUSf.rst new file mode 100644 index 0000000..9969556 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2020-02-01-00-03-06.bpo-39509.-YxUSf.rst @@ -0,0 +1,2 @@ +HTTP status codes ``103 EARLY_HINTS`` and ``425 TOO_EARLY`` are added to +:class:`http.HTTPStatus`. Patch by Dong-hee Na. |