From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Wed, 6 Nov 2019 14:27:09 +0000 (-0800) Subject: bpo-38696: Fix usage example of HTTPStatus (GH-17066) X-Git-Tag: v3.8.1rc1~101 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=30da387df193b9f05c2891ae601ae5a1d669a5c1;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 8df14578de1f..0e3441cbcb71 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'