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
Date 2013-09-04.19:47:27
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1378324047.44.0.111510450424.issue18924@psf.upfronthosting.co.za>
In-reply-to
Content
Python 3.4.0a1+ (default:33727fbb4668+, Aug 31 2013, 12:34:55) 
[GCC 4.7.3] on linux
Type "help", "copyright", "credits" or "license" for more information.
--> import enum
--> class Test(enum.Enum):
...   this = 'that'
... 
--> Test.this
<Test.this: 'that'>
--> Test.this = 9
--> Test.this
9

I'm pretty sure we don't want that.
History
Date User Action Args
2013-09-04 19:47:27ethan.furmansetrecipients: + ethan.furman, barry, eli.bendersky
2013-09-04 19:47:27ethan.furmansetmessageid: <1378324047.44.0.111510450424.issue18924@psf.upfronthosting.co.za>
2013-09-04 19:47:27ethan.furmanlinkissue18924 messages
2013-09-04 19:47:27ethan.furmancreate