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 matrixise
Recipients Farbod Safe2, matrixise
Date 2019-03-18.15:07:34
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1552921654.06.0.818432170282.issue36349@roundup.psfhosted.org>
In-reply-to
Content
Python 3.7.2 (default, Jan 16 2019, 19:49:22) 
[GCC 8.2.1 20181215 (Red Hat 8.2.1-6)] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import re
>>> s = '[a]'
>>> print(*re.findall(r'\[.*]', s))
[a]
>>> print(*re.findall(r'\[.*]', s))
[a]
>>>
History
Date User Action Args
2019-03-18 15:07:34matrixisesetrecipients: + matrixise, Farbod Safe2
2019-03-18 15:07:34matrixisesetmessageid: <1552921654.06.0.818432170282.issue36349@roundup.psfhosted.org>
2019-03-18 15:07:34matrixiselinkissue36349 messages
2019-03-18 15:07:34matrixisecreate