Message189885
Yes. As msg99456 suggests, I fixed it the my source code before posting.
Compare re in Python 3.3.2:
>>> re.compile('x').findall('xxxx', 1, 3)
['x', 'x']
>>> re.compile('x').findall('xxxx', 1, -1)
[]
with regex:
>>> regex.compile('x').findall('xxxx', 1, 3)
['x', 'x']
>>> regex.compile('x').findall('xxxx', 1, -1)
['x', 'x'] |
|
Date |
User |
Action |
Args |
2013-05-23 22:44:02 | mrabarnett | set | recipients:
+ mrabarnett, tlynn, timehorse, ezio.melotti, BreamoreBoy |
2013-05-23 22:44:02 | mrabarnett | set | messageid: <1369349042.37.0.320957394843.issue7940@psf.upfronthosting.co.za> |
2013-05-23 22:44:02 | mrabarnett | link | issue7940 messages |
2013-05-23 22:44:02 | mrabarnett | create | |
|