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 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:17xtreaksetrecipients: + xtreak, ezio.melotti, mrabarnett, Matthew Drago
2019-03-01 17:55:17xtreaksetmessageid: <1551462917.24.0.0498383801749.issue36158@roundup.psfhosted.org>
2019-03-01 17:55:17xtreaklinkissue36158 messages
2019-03-01 17:55:17xtreakcreate