Message56659
| Author |
nevyn |
| Recipients |
donmez, gvanrossum, jafo, nevyn, nnorwitz |
| Date |
2007年10月22日.21:43:04 |
| SpamBayes Score |
0.36992812 |
| Marked as misclassified |
No |
| Message-id |
<1193089385.5.0.175139958818.issue1179@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
Not sure who Neal is, and this probably isn't a final upstream fix ...
but it's what I've applied to Fedora's python. It's basically the same
patch as before, but it keeps the original * tests instead of just
replacing them with / tests. So given:
if x * y != len
...the first patch did:
if len / x != y
...and this patch does:
if x * y != len ||
len / x != y |
|
History
|
|---|
| Date |
User |
Action |
Args |
| 2007年10月22日 21:43:05 | nevyn | set | spambayes_score: 0.369928 -> 0.36992812 recipients:
+ nevyn, gvanrossum, nnorwitz, jafo, donmez |
| 2007年10月22日 21:43:05 | nevyn | set | spambayes_score: 0.369928 -> 0.369928 messageid: <1193089385.5.0.175139958818.issue1179@psf.upfronthosting.co.za> |
| 2007年10月22日 21:43:05 | nevyn | link | issue1179 messages |
| 2007年10月22日 21:43:05 | nevyn | create |
|