Message61768
| 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:29 | gvanrossum | set | spambayes_score: 0.0768609 -> 0.076860905 recipients: + gvanrossum, loewis, nnorwitz, gregory.p.smith, christian.heimes, alexandre.vassalotti, donmez |
| 2008-01-28 03:20:29 | gvanrossum | set | spambayes_score: 0.0768609 -> 0.0768609 messageid: <1201490429.34.0.607414472246.issue1621@psf.upfronthosting.co.za> |
| 2008-01-28 03:20:28 | gvanrossum | link | issue1621 messages |
| 2008-01-28 03:20:28 | gvanrossum | create | |