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 <1349992014.03.0.556851172854.issue16203@psf.upfronthosting.co.za>
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: <1349992014.03.0.556851172854.issue16203@psf.upfronthosting.co.za>
2012-10-11 21:46:54serhiy.storchakalinkissue16203 messages
2012-10-11 21:46:53serhiy.storchakacreate