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 serhiy.storchaka
Recipients bsaner, eric.smith, serhiy.storchaka
Date 2019-07-14.20:00:42
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1563134443.01.0.267464501588.issue37594@roundup.psfhosted.org>
In-reply-to
Content
This change was intentional and documented. It fixed old bug in the Python implementation of RE and removed the discrepancy with other RE engines.

The pattern r'\.*$' matches not only a sequence of dots at the of the line, but also an empty string at the end of line. If this is not what you want, use r'\.+$'.
History
Date User Action Args
2019-07-14 20:00:43serhiy.storchakasetrecipients: + serhiy.storchaka, eric.smith, bsaner
2019-07-14 20:00:43serhiy.storchakasetmessageid: <1563134443.01.0.267464501588.issue37594@roundup.psfhosted.org>
2019-07-14 20:00:42serhiy.storchakalinkissue37594 messages
2019-07-14 20:00:42serhiy.storchakacreate