diff options
author | Géry Ogam <gery.ogam@gmail.com> | 2022-05-02 22:28:45 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-02 22:28:45 (GMT) |
commit | 2d30adee72317e569d24739243cdd6f7631fa68f (patch) | |
tree | 33aa34add4ebd735aceed5c2b6e835f1f9448398 /Misc | |
parent | 32e4f450af3fbcc5c7e186f83ff74e2efe164136 (diff) | |
download | cpython-2d30adee72317e569d24739243cdd6f7631fa68f.zip cpython-2d30adee72317e569d24739243cdd6f7631fa68f.tar.gz cpython-2d30adee72317e569d24739243cdd6f7631fa68f.tar.bz2 |
bpo-46285: Add command-line option -p/--protocol to module http.server (#30999)
Co-authored-by: Éric <merwok@netwok.org>
Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com>
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2022-01-29-00-23-00.bpo-46285.pt84qm.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2022-01-29-00-23-00.bpo-46285.pt84qm.rst b/Misc/NEWS.d/next/Library/2022-01-29-00-23-00.bpo-46285.pt84qm.rst new file mode 100644 index 0000000..83c4990 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2022-01-29-00-23-00.bpo-46285.pt84qm.rst @@ -0,0 +1,4 @@ +Add command-line option ``-p``/``--protocol`` to module :mod:`http.server` +which specifies the HTTP version to which the server is conformant (HTTP/1.1 +conformant servers can now be run from the command-line interface of module +:mod:`http.server`). Patch by Géry Ogam. |