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 serhiy.storchaka
Recipients barry, eli.bendersky, ethan.furman, ezio.melotti, martin.panter, r.david.murray, serhiy.storchaka
Date 2016-08-14.06:18:05
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1471155485.61.0.444041303959.issue23591@psf.upfronthosting.co.za>
In-reply-to
Content
Due to dynamic typing EnumSet actually is not needed in Python. You can use sets, tuples or lists for combining enums in new API. IntFlags is needed for old API that already uses ints. I think introducing non-int Flags is overengineering, can't imagine somebody will use it in new code.

There is no much time left before feature freeze. If general IntFlags will not added, I'm going to open separate issues for adding specialized class for every particular case (re, os, etc).
History
Date User Action Args
2016-08-14 06:18:05serhiy.storchakasetrecipients: + serhiy.storchaka, barry, ezio.melotti, r.david.murray, eli.bendersky, ethan.furman, martin.panter
2016-08-14 06:18:05serhiy.storchakasetmessageid: <1471155485.61.0.444041303959.issue23591@psf.upfronthosting.co.za>
2016-08-14 06:18:05serhiy.storchakalinkissue23591 messages
2016-08-14 06:18:05serhiy.storchakacreate