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, eric.snow, ethan.furman
Date 2013-09-04.22:05:17
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1378332318.03.0.380952446091.issue18924@psf.upfronthosting.co.za>
In-reply-to
Content
Yes, as a matter of fact:

--> Test.this
<Test.this: 'that'>
--> Test.this = 'other'
--> Test.this
'other'
--> Test('that')
<Test.this: 'that'>
--> list(Test)
[<Test.this: 'that'>]

As you can see, the Test Enum becomes inconsistent if this is allowed.
History
Date User Action Args
2013-09-04 22:05:18ethan.furmansetrecipients: + ethan.furman, barry, eli.bendersky, eric.snow
2013-09-04 22:05:18ethan.furmansetmessageid: <1378332318.03.0.380952446091.issue18924@psf.upfronthosting.co.za>
2013-09-04 22:05:18ethan.furmanlinkissue18924 messages
2013-09-04 22:05:17ethan.furmancreate