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 vstinner
Recipients carlosklock, vstinner
Date 2008-10-28.15:55:07
SpamBayes Score 0.00031990977
Marked as misclassified No
Message-id <1225209308.89.0.0713051243568.issue4219@psf.upfronthosting.co.za>
In-reply-to
Content
It's not a Python bug: your regex is invalid. When the regex 
finds '1211641200', it reads >,'1211641200',< includind the last 
comma. So the cursor will be at the apostrophe before 1214578800:
...200','121457...
--------^

You have to change your regex to not check the comma or use a 
non-matching group like (?<=,) and (?=[,)]).

Note: you're using [,|)] which matchs >,<, >|<, and >)<. I guess that 
you wanted [,)].
History
Date User Action Args
2008-10-28 15:55:08vstinnersetrecipients: + vstinner, carlosklock
2008-10-28 15:55:08vstinnersetmessageid: <1225209308.89.0.0713051243568.issue4219@psf.upfronthosting.co.za>
2008-10-28 15:55:08vstinnerlinkissue4219 messages
2008-10-28 15:55:07vstinnercreate