Message 175111 - Python tracker
Message175111
| 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:32 | serhiy.storchaka | set | recipients: + serhiy.storchaka, ezio.melotti, mrabarnett, Sebastien.Estienne |
| 2012-11-07 17:34:32 | serhiy.storchaka | set | messageid: <1352309672.85.0.490889796947.issue16430@psf.upfronthosting.co.za> |
| 2012-11-07 17:34:32 | serhiy.storchaka | link | issue16430 messages |
| 2012-11-07 17:34:32 | serhiy.storchaka | create | |