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 serhiy.storchaka
Recipients gvanrossum, serhiy.storchaka, tim.peters
Date 2012-10-11.21:46:53
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <[email protected]>
In-reply-to
Content
What will be with non-greedy qualifiers? Should '.*?' full match any string?

>>> re.match('.*?$', 'abc').group()
'abc'
>>> re.match('.*?', 'abc').group()
''
History
Date User Action Args
2012-10-11 21:46:54serhiy.storchakasetrecipients: + serhiy.storchaka, gvanrossum, tim.peters
2012-10-11 21:46:54serhiy.storchakasetmessageid: <[email protected]>
2012-10-11 21:46:54serhiy.storchakalinkissue16203 messages
2012-10-11 21:46:53serhiy.storchakacreate