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 mrabarnett
Recipients BreamoreBoy, ezio.melotti, l0nwlf, lemburg, loewis, mrabarnett, nathanlmiles, rsc, terry.reedy, timehorse, vstinner
Date 2013-05-26.16:56:19
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1369587379.24.0.463108691112.issue1693050@psf.upfronthosting.co.za>
In-reply-to
Content
I had to check what re does in Python 3.3:

>>> print(len(re.match(r'\w+', 'हिन्दी').group()))
1

Regex does this:

>>> print(len(regex.match(r'\w+', 'हिन्दी').group()))
6
History
Date User Action Args
2013-05-26 16:56:19mrabarnettsetrecipients: + mrabarnett, lemburg, loewis, terry.reedy, vstinner, nathanlmiles, rsc, timehorse, ezio.melotti, l0nwlf, BreamoreBoy
2013-05-26 16:56:19mrabarnettsetmessageid: <1369587379.24.0.463108691112.issue1693050@psf.upfronthosting.co.za>
2013-05-26 16:56:19mrabarnettlinkissue1693050 messages
2013-05-26 16:56:19mrabarnettcreate