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 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:29ethan.furmansetrecipients: + ethan.furman, barry, ezio.melotti, mrabarnett, eli.bendersky, serhiy.storchaka, veky
2020-09-14 20:26:29ethan.furmansetmessageid: <1600115189.46.0.598475720876.issue40066@roundup.psfhosted.org>
2020-09-14 20:26:29ethan.furmanlinkissue40066 messages
2020-09-14 20:26:29ethan.furmancreate