Message190100
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 |
|
Date |
User |
Action |
Args |
2013-05-26 16:56:19 | mrabarnett | set | recipients:
+ mrabarnett, lemburg, loewis, terry.reedy, vstinner, nathanlmiles, rsc, timehorse, ezio.melotti, l0nwlf, BreamoreBoy |
2013-05-26 16:56:19 | mrabarnett | set | messageid: <1369587379.24.0.463108691112.issue1693050@psf.upfronthosting.co.za> |
2013-05-26 16:56:19 | mrabarnett | link | issue1693050 messages |
2013-05-26 16:56:19 | mrabarnett | create | |
|