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 ethan.furman, ezio.melotti, mrabarnett, serhiy.storchaka
Date 2020-09-14.22:06:57
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1600121217.18.0.888083081168.issue41786@roundup.psfhosted.org>
In-reply-to
Content
>>> import re
>>> re.I
re.IGNORECASE

>>> print(re.I)
RegexFlag.IGNORECASE    # according to comment in linked issue, this should be `re.IGNORECASE` as well
History
Date User Action Args
2020-09-14 22:06:57ethan.furmansetrecipients: + ethan.furman, ezio.melotti, mrabarnett, serhiy.storchaka
2020-09-14 22:06:57ethan.furmansetmessageid: <1600121217.18.0.888083081168.issue41786@roundup.psfhosted.org>
2020-09-14 22:06:57ethan.furmanlinkissue41786 messages
2020-09-14 22:06:57ethan.furmancreate