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 serhiy.storchaka
Recipients Sebastien.Estienne, ezio.melotti, mrabarnett, serhiy.storchaka
Date 2012-11-07.17:34:32
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1352309672.85.0.490889796947.issue16430@psf.upfronthosting.co.za>
In-reply-to
Content
There is no a Python bug.

You have wrong regexp.  Remove "$" at the end or add ".*" before "$".

And it would be better if instead of '(?P<date>.*?)\s' and '"(?P<method_uri>.*?)"' you use '(?P<date>\S+)\s' and '"(?P<method_uri>[^"]*)"'.
History
Date User Action Args
2012-11-07 17:34:32serhiy.storchakasetrecipients: + serhiy.storchaka, ezio.melotti, mrabarnett, Sebastien.Estienne
2012-11-07 17:34:32serhiy.storchakasetmessageid: <1352309672.85.0.490889796947.issue16430@psf.upfronthosting.co.za>
2012-11-07 17:34:32serhiy.storchakalinkissue16430 messages
2012-11-07 17:34:32serhiy.storchakacreate