Message197854
| 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)
======================================================================================= |
|