This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author ethan.furman
Recipients eli.bendersky, ethan.furman, pitrou
Date 2013-09-09.04:58:25
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1378702707.79.0.646502943389.issue18929@psf.upfronthosting.co.za>
In-reply-to
Content
This is a more useful help() -- patch attached.

==============================================================================
Help on class Color in module __main__:

class Color(enum.Enum)
 |  Method resolution order:
 |      Color
 |      enum.Enum
 |      builtins.object
 |  
 |  Data and other attributes defined here:
 |  
 |  blue = <Color.blue: 3>
 |  
 |  green = <Color.green: 2>
 |  
 |  red = <Color.red: 1>
 |  
 |  ----------------------------------------------------------------------
 |  Data descriptors inherited from enum.EnumMeta:
 |  
 |  __members__
 |      Returns a mapping of member name->value.
 |      
 |      This mapping lists all enum members, including aliases. Note that this
 |      is a read-only view of the internal mapping.
History
Date User Action Args
2013-09-09 04:58:27ethan.furmansetrecipients: + ethan.furman, pitrou, eli.bendersky
2013-09-09 04:58:27ethan.furmansetmessageid: <1378702707.79.0.646502943389.issue18929@psf.upfronthosting.co.za>
2013-09-09 04:58:27ethan.furmanlinkissue18929 messages
2013-09-09 04:58:25ethan.furmancreate