commit | 30da387df193b9f05c2891ae601ae5a1d669a5c1 | [log] [tgz] |
---|---|---|
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | Wed Nov 06 06:27:09 2019 -0800 |
committer | GitHub <noreply@github.com> | Wed Nov 06 06:27:09 2019 -0800 |
tree | ed92a0a21149452ebf20f94b0df82a9297cc1bb9 | |
parent | 7c20888e71304ecbf4bd3d595f364b7c691d30a0 [diff] [blame] |
bpo-38696: Fix usage example of HTTPStatus (GH-17066) (cherry picked from commit 56698d57691af2272f695f8c17c835ed99545cde) Co-authored-by: Ammar Askar <ammar@ammaraskar.com>
diff --git a/Doc/library/http.rst b/Doc/library/http.rst index 8df1457..0e3441c 100644 --- a/Doc/library/http.rst +++ b/Doc/library/http.rst
@@ -38,7 +38,7 @@ <HTTPStatus.OK: 200> >>> HTTPStatus.OK == 200 True - >>> http.HTTPStatus.OK.value + >>> HTTPStatus.OK.value 200 >>> HTTPStatus.OK.phrase 'OK'