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 mark.dickinson
Recipients Sebastien.Estienne, ezio.melotti, mark.dickinson, mrabarnett, serhiy.storchaka
Date 2012-11-07.17:35:54
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1352309754.33.0.175214712062.issue16430@psf.upfronthosting.co.za>
In-reply-to
Content
This is a known issue: there are a good few duplicates in the tracker.  Issue #1662581 is one, for example.

In this particular case, you can probably fix things by tightening up your regex.  Part of the problem is that '.*' is going to match any sequence of characters, including spaces.  Judicious use of '\S' to match non-whitespace characters might help. There's not much point to the '?' in  '.*?', either.
History
Date User Action Args
2012-11-07 17:35:54mark.dickinsonsetrecipients: + mark.dickinson, ezio.melotti, mrabarnett, serhiy.storchaka, Sebastien.Estienne
2012-11-07 17:35:54mark.dickinsonsetmessageid: <1352309754.33.0.175214712062.issue16430@psf.upfronthosting.co.za>
2012-11-07 17:35:54mark.dickinsonlinkissue16430 messages
2012-11-07 17:35:54mark.dickinsoncreate