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 malin
Recipients beardypig, ezio.melotti, malin, mrabarnett, serhiy.storchaka, xtreak
Date 2019-01-13.08:10:14
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1547367014.46.0.256239571684.issue34294@roundup.psfhosted.org>
In-reply-to
Content
Simplify the test-case, it seem the `state` is not reset properly.

Python 3.6.8 (tags/v3.6.8:3c6b436a57, Dec 24 2018, 00:16:47)
>>> import re
>>> re.findall(r"(?=(<\w+>)(<\w+>)?)", "<aaa><bbb>")
[('<aaa>', '<bbb>'), ('<bbb>', '')]

Python 3.7.2 (tags/v3.7.2:9a3ffc0492, Dec 23 2018, 23:09:28)
>>> import re
>>> re.findall(r"(?=(<\w+>)(<\w+>)?)", "<aaa><bbb>")
[('<aaa>', '<bbb>'), ('<bbb>', '<bbb>')]
History
Date User Action Args
2019-01-13 08:10:16malinsetrecipients: + malin, ezio.melotti, mrabarnett, serhiy.storchaka, beardypig, xtreak
2019-01-13 08:10:14malinsetmessageid: <1547367014.46.0.256239571684.issue34294@roundup.psfhosted.org>
2019-01-13 08:10:14malinlinkissue34294 messages
2019-01-13 08:10:14malincreate