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 barry, eli.bendersky, ethan.furman, ncoghlan, pitrou, r.david.murray
Date 2013-09-16.01:26:28
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1379294790.81.0.380959172178.issue19030@psf.upfronthosting.co.za>
In-reply-to
Content
Attached patch yields these results:

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

class Test(enum.Enum)
 |  Method resolution order:
 |      Test
 |      enum.Enum
 |      builtins.object
 |  
 |  Data and other attributes defined here:
 |  
 |  name = <Test.name: 'Python'>
 |  
 |  these = <Test.these: 'those'>
 |  
 |  this = <Test.this: 'that'>
 |  
 |  value = <Test.value: 'awesome'>
 |  
 |  whose = <Test.whose: 'mine'>
 |  
 |  ----------------------------------------------------------------------
 |  Data descriptors inherited from enum.Enum:
 |  
 |  name
 |      The name of the Enum member.
 |  
 |  value
 |      The value of the Enum member.
 |  
 |  ----------------------------------------------------------------------
 |  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.
(END)
=======================================================================================
History
Date User Action Args
2013-09-16 01:26:30ethan.furmansetrecipients: + ethan.furman, barry, ncoghlan, pitrou, r.david.murray, eli.bendersky
2013-09-16 01:26:30ethan.furmansetmessageid: <1379294790.81.0.380959172178.issue19030@psf.upfronthosting.co.za>
2013-09-16 01:26:30ethan.furmanlinkissue19030 messages
2013-09-16 01:26:30ethan.furmancreate