From: Mariatta Date: Wed, 1 Mar 2017 05:07:32 +0000 (-0800) Subject: correct documentation for enum.html (GH-358) (GH-367) X-Git-Tag: v3.6.1rc1~30 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8458b2b4ef06805d65c9e253433727e60820992e;p=thirdparty%2FPython%2Fcpython.git correct documentation for enum.html (GH-358) (GH-367) (cherry picked from commit 626584284e74a68fff8157f9afe77b3088ff7be9) --- diff --git a/Doc/library/enum.rst b/Doc/library/enum.rst index 5cd6472f3e2f..6548adf789da 100644 --- a/Doc/library/enum.rst +++ b/Doc/library/enum.rst @@ -24,8 +24,8 @@ Module Contents --------------- This module defines four enumeration classes that can be used to define unique -sets of names and values: :class:`Enum`, :class:`IntEnum`, and -:class:`IntFlags`. It also defines one decorator, :func:`unique`, and one +sets of names and values: :class:`Enum`, :class:`IntEnum`, :class:`Flag`, and +:class:`IntFlag`. It also defines one decorator, :func:`unique`, and one helper, :class:`auto`. .. class:: Enum