Skip to content

Commit 91f4b92

Browse files
bpo-38696: Fix usage example of HTTPStatus (GH-17066)
(cherry picked from commit 56698d5) Co-authored-by: Ammar Askar <ammar@ammaraskar.com>
1 parent 1bfc567 commit 91f4b92

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Doc/library/http.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ associated messages through the :class:`http.HTTPStatus` enum:
3838
<HTTPStatus.OK: 200>
3939
>>> HTTPStatus.OK == 200
4040
True
41-
>>> http.HTTPStatus.OK.value
41+
>>> HTTPStatus.OK.value
4242
200
4343
>>> HTTPStatus.OK.phrase
4444
'OK'

0 commit comments

Comments
 (0)