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 gvanrossum
Recipients alexandre.vassalotti, christian.heimes, donmez, gregory.p.smith, gvanrossum, loewis, nnorwitz
Date 2008-01-28.03:20:28
SpamBayes Score 0.076860905
Marked as misclassified No
Message-id <1201490429.34.0.607414472246.issue1621@psf.upfronthosting.co.za>
In-reply-to
Content
> for (i = 0; i < strlen(field) ; i++) {

This looks inefficient.  Why not

 for (i = 0; field[i] != '\0'; i++) {

???
History
Date User Action Args
2008-01-28 03:20:29gvanrossumsetspambayes_score: 0.0768609 -> 0.076860905
recipients: + gvanrossum, loewis, nnorwitz, gregory.p.smith, christian.heimes, alexandre.vassalotti, donmez
2008-01-28 03:20:29gvanrossumsetspambayes_score: 0.0768609 -> 0.0768609
messageid: <1201490429.34.0.607414472246.issue1621@psf.upfronthosting.co.za>
2008-01-28 03:20:28gvanrossumlinkissue1621 messages
2008-01-28 03:20:28gvanrossumcreate