Skip to content

Commit

Permalink
bpo-38696: Fix usage example of HTTPStatus (GH-17066)
Browse files Browse the repository at this point in the history
(cherry picked from commit 56698d5)

Co-authored-by: Ammar Askar <ammar@ammaraskar.com>
  • Loading branch information
miss-islington and ammaraskar committed Nov 6, 2019
1 parent 1bfc567 commit 91f4b92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Doc/library/http.rst
Expand Up @@ -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'
Expand Down

0 comments on commit 91f4b92

Please sign in to comment.