Remove unnecessary duplication

This commit is contained in:
Eli Bendersky 2013-04-13 05:44:51 -07:00
parent d3c26c354d
commit 617d74e66e
1 changed files with 0 additions and 8 deletions

View File

@ -116,14 +116,6 @@ Enumeration values have nice, human readable string representations::
>>> print(repr(Colors.red))
<EnumValue: Colors.red [value=1]>
The enumeration value names are available through the class members::
>>> for member in Colors.__members__:
... print(member)
red
green
blue
You can get the enumeration class object from an enumeration value::
>>> cls = Colors.red.enum