Message376900
Looks like the `re` module's flags have been updated separately in issue36548:
>>> import re
>>> re.I
re.IGNORECASE
>>> print(re.I)
# should also be re.IGNORECASE
>>> re.I|re.S|re.X
re.IGNORECASE|re.DOTALL|re.VERBOSE
For stdlib Enum conversions are we happy with that? Or should __str__ just print the numeric value? |
|
Date |
User |
Action |
Args |
2020-09-14 20:26:29 | ethan.furman | set | recipients:
+ ethan.furman, barry, ezio.melotti, mrabarnett, eli.bendersky, serhiy.storchaka, veky |
2020-09-14 20:26:29 | ethan.furman | set | messageid: <1600115189.46.0.598475720876.issue40066@roundup.psfhosted.org> |
2020-09-14 20:26:29 | ethan.furman | link | issue40066 messages |
2020-09-14 20:26:29 | ethan.furman | create | |
|