From: Ethan Furman Date: Fri, 14 Jun 2013 07:30:27 +0000 (-0700) Subject: Closes issue 17947. Adds PEP-0435 (Enum, IntEnum) to the stdlib. X-Git-Tag: v3.4.0a1~513 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0fff6ad1a1110b2163242f740ceb7a8a860c0eb5;p=thirdparty%2FPython%2Fcpython.git Closes issue 17947. Adds PEP-0435 (Enum, IntEnum) to the stdlib. --- diff --git a/Doc/library/datatypes.rst b/Doc/library/datatypes.rst index d0382e0f7a58..48af0823aa49 100644 --- a/Doc/library/datatypes.rst +++ b/Doc/library/datatypes.rst @@ -30,3 +30,4 @@ The following modules are documented in this chapter: copy.rst pprint.rst reprlib.rst + enum.rst