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 PJB3005, cheryl.sabella, docs@python, ethan.furman, ezio.melotti, gvanrossum, levkivskyi, mrabarnett, r.david.murray, serhiy.storchaka
Date 2020-09-13.00:18:21
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1599956301.83.0.0833823282856.issue31369@roundup.psfhosted.org>
In-reply-to
Content
Guido, do you have an opinion on adding `RegexFlag` to the `re` module's `__all__` and documenting it?

There is also some discussion on making these types of int-to-Enum conversions use a `module.name` repr instead of `class.name`:

used to be:

    >>> re.I
    <RegexFlag.I: 2>

is now:

    >>> re.I
    re.IGNORECASE

I of course have no idea if that matters to typing one way or the other.
History
Date User Action Args
2020-09-13 00:18:21ethan.furmansetrecipients: + ethan.furman, gvanrossum, ezio.melotti, mrabarnett, r.david.murray, docs@python, serhiy.storchaka, levkivskyi, cheryl.sabella, PJB3005
2020-09-13 00:18:21ethan.furmansetmessageid: <1599956301.83.0.0833823282856.issue31369@roundup.psfhosted.org>
2020-09-13 00:18:21ethan.furmanlinkissue31369 messages
2020-09-13 00:18:21ethan.furmancreate