From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Wed, 6 Nov 2019 14:27:17 +0000 (-0800) Subject: bpo-38696: Fix usage example of HTTPStatus (GH-17066) X-Git-Tag: v3.7.6rc1~65 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=91f4b9282fe7cdc51c6612002d033da654f422c1;p=thirdparty%2FPython%2Fcpython.git bpo-38696: Fix usage example of HTTPStatus (GH-17066) (cherry picked from commit 56698d57691af2272f695f8c17c835ed99545cde) Co-authored-by: Ammar Askar --- diff --git a/Doc/library/http.rst b/Doc/library/http.rst index 88d62cca3f90..0deeaf624648 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 True - >>> http.HTTPStatus.OK.value + >>> HTTPStatus.OK.value 200 >>> HTTPStatus.OK.phrase 'OK'