Message336943
| Author | xtreak |
|---|---|
| Recipients | Matthew Drago, ezio.melotti, mrabarnett, xtreak |
| Date | 2019-03-01.17:55:17 |
| SpamBayes Score | -1.0 |
| Marked as misclassified | Yes |
| Message-id | <1551462917.24.0.0498383801749.issue36158@roundup.psfhosted.org> |
| In-reply-to |
| Content | |
|---|---|
Can you please add a short script with data for entities to try reproducing this?
>>> from re import compile
>>> name_regex = compile(r'\[\"([a-zA-Z\s]*)\"{1}')
>>> [name_regex.match(a).group(1) for a in ['["a"a]']]
['a']
>>> list(map(lambda a: name_regex.match(a).group(1), ['["a"a]']))
['a'] |
|
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2019-03-01 17:55:17 | xtreak | set | recipients: + xtreak, ezio.melotti, mrabarnett, Matthew Drago |
| 2019-03-01 17:55:17 | xtreak | set | messageid: <1551462917.24.0.0498383801749.issue36158@roundup.psfhosted.org> |
| 2019-03-01 17:55:17 | xtreak | link | issue36158 messages |
| 2019-03-01 17:55:17 | xtreak | create | |