Message 376900 - Python tracker
Message376900
| Author | ethan.furman |
|---|---|
| Recipients | barry, eli.bendersky, ethan.furman, ezio.melotti, mrabarnett, serhiy.storchaka, veky |
| Date | 2020-09-14.20:26:29 |
| SpamBayes Score | -1.0 |
| Marked as misclassified | Yes |
| Message-id | <1600115189.46.0.598475720876.issue40066@roundup.psfhosted.org> |
| In-reply-to |
| Content | |
|---|---|
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? |
|
| History | |||
|---|---|---|---|
| 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 | |