diff options
author | Ammar Askar <ammar@ammaraskar.com> | 2019-11-05 18:29:33 -0500 |
---|---|---|
committer | Zachary Ware <zach@python.org> | 2019-11-05 17:29:33 -0600 |
commit | 56698d57691af2272f695f8c17c835ed99545cde (patch) | |
tree | 3091f2f74c4b895aa2af1e8abb6261895b38557d /Doc/library | |
parent | bf17d41826a8bb4bc1e34ba6345da98aac779e41 (diff) | |
download | cpython-git-56698d57691af2272f695f8c17c835ed99545cde.tar.gz |
bpo-38696: Fix usage example of HTTPStatus (GH-17066)
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/http.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/http.rst b/Doc/library/http.rst index 8df14578de..0e3441cbcb 100644 --- a/Doc/library/http.rst +++ b/Doc/library/http.rst @@ -38,7 +38,7 @@ associated messages through the :class:`http.HTTPStatus` enum: <HTTPStatus.OK: 200> >>> HTTPStatus.OK == 200 True - >>> http.HTTPStatus.OK.value + >>> HTTPStatus.OK.value 200 >>> HTTPStatus.OK.phrase 'OK' |