From 08f3143aea534efb25b176ede8499a4bb23472f7 Mon Sep 17 00:00:00 2001 From: Berker Peksag Date: Tue, 20 Jan 2015 08:02:28 +0200 Subject: Issue #20898: Enum names are only available in the http.client module as constants. Noticed by Martin Panter. --- Doc/library/http.rst | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Doc/library/http.rst b/Doc/library/http.rst index d4247c3..b6f2c58 100644 --- a/Doc/library/http.rst +++ b/Doc/library/http.rst @@ -117,7 +117,6 @@ Code Enum Name Details ======= =================================== ================================================================== In order to preserve backwards compatibility, enum values are also present -in the :mod:`http.client` and :mod:`http.server` modules in the form of -constants. The enum name is equal to the constant name (i.e. -``http.HTTPStatus.OK`` is also available as ``http.client.OK`` and -``http.server.OK``). +in the :mod:`http.client` module in the form of constants. The enum name is +equal to the constant name (i.e. ``http.HTTPStatus.OK`` is also available as +``http.client.OK``). -- cgit v0.12