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 terry.reedy
Recipients eric.smith, ezio.melotti, mindauga, mrabarnett, terry.reedy
Date 2011-05-06.21:41:18
SpamBayes Score 0.00011027369
Marked as misclassified No
Message-id <1304718082.03.0.0912503254358.issue11957@psf.upfronthosting.co.za>
In-reply-to
Content
I like the idea of an internal REflag class with __new__, __or__, and __repr__==__str__. Str(re.A|re.L) might print as
"REflag: re.ASCII | re.IGNORE"
If it is *not* an int subclass, any attempt to use or mix with an int would raise. I checked and the doc only promises that flags can be or'ed. An __and__ method might be added if it were thought that people currently use & to check for flags set, though that is not currently promised.
History
Date User Action Args
2011-05-06 21:41:22terry.reedysetrecipients: + terry.reedy, eric.smith, ezio.melotti, mrabarnett, mindauga
2011-05-06 21:41:22terry.reedysetmessageid: <1304718082.03.0.0912503254358.issue11957@psf.upfronthosting.co.za>
2011-05-06 21:41:18terry.reedylinkissue11957 messages
2011-05-06 21:41:18terry.reedycreate