Message333548
| 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:16 | malin | set | recipients: + malin, ezio.melotti, mrabarnett, serhiy.storchaka, beardypig, xtreak |
| 2019-01-13 08:10:14 | malin | set | messageid: <1547367014.46.0.256239571684.issue34294@roundup.psfhosted.org> |
| 2019-01-13 08:10:14 | malin | link | issue34294 messages |
| 2019-01-13 08:10:14 | malin | create | |