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 py.user
Recipients ezio.melotti, py.user
Date 2012-02-18.03:13:37
SpamBayes Score 0.028308291
Marked as misclassified No
Message-id <1329534818.23.0.573239991753.issue14045@psf.upfronthosting.co.za>
In-reply-to
Content
>>> import re
>>> '\U00000061'
'a'
>>> '\U00100061'
'\U00100061'
>>> re.search('\U00100061', '\U00100061' * 10).group()
'\U00100061'
>>> re.search('\U00100061+', '\U00100061' * 10).group()
'\U00100061'
>>> re.search('(\U00100061)+', '\U00100061' * 10).group()
'\U00100061\U00100061\U00100061\U00100061\U00100061\U00100061\U00100061\U00100061\U00100061\U00100061'
>>> 
>>>
>>> re.search('\U00100061{3}', '\U00100061' * 10)
>>> re.search('(\U00100061){3}', '\U00100061' * 10).group()
'\U00100061\U00100061\U00100061'
>>>
History
Date User Action Args
2012-02-18 03:13:38py.usersetrecipients: + py.user, ezio.melotti
2012-02-18 03:13:38py.usersetmessageid: <1329534818.23.0.573239991753.issue14045@psf.upfronthosting.co.za>
2012-02-18 03:13:37py.userlinkissue14045 messages
2012-02-18 03:13:37py.usercreate