From: Ammar Askar Date: Tue, 5 Nov 2019 23:29:33 +0000 (-0500) Subject: bpo-38696: Fix usage example of HTTPStatus (GH-17066) X-Git-Tag: v3.9.0a1~76 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=56698d57691af2272f695f8c17c835ed99545cde;p=thirdparty%2FPython%2Fcpython.git bpo-38696: Fix usage example of HTTPStatus (GH-17066) --- 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'