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 jackdied
Recipients ajaksu2, barry, jackdied
Date 2008-08-01.04:38:15
SpamBayes Score 0.00312304
Marked as misclassified No
Message-id <1217565499.45.0.664008377249.issue2676@psf.upfronthosting.co.za>
In-reply-to
Content
Augmented version of Daniel's patch.

This makes an internal function that does the same work.  It uses
txt.find() instead of split() or partition() because for pathologically
long strings find() is noticeably faster.  It also does the strip()
before the lower() which helps with evilly long strings.

I didn't remove the module global "paramre" because an external module
might be using it.  I did update its comment.

Do bugfixes get applied to 2.6 or 3.0?  I'm a bit out of practice.
History
Date User Action Args
2008-08-01 04:38:20jackdiedsetrecipients: + jackdied, barry, ajaksu2
2008-08-01 04:38:19jackdiedsetmessageid: <1217565499.45.0.664008377249.issue2676@psf.upfronthosting.co.za>
2008-08-01 04:38:18jackdiedlinkissue2676 messages
2008-08-01 04:38:17jackdiedcreate