Message62992
| Author | belopolsky |
|---|---|
| Recipients | _doublep, belopolsky, gvanrossum, nnorwitz |
| Date | 2008-02-25.19:09:33 |
| SpamBayes Score | 0.21580128 |
| Marked as misclassified | No |
| Message-id | <1203966574.28.0.390575433925.issue1394@psf.upfronthosting.co.za> |
| In-reply-to |
| Content | |
|---|---|
I figured that out:
>>> def g():
... raise RuntimeError
...
Before the patch:
>>> dis(g)
2 0 LOAD_GLOBAL 0 (RuntimeError)
3 RAISE_VARARGS 1
6 LOAD_CONST 0 (None)
9 RETURN_VALUE
After the patch:
>>> dis(g)
2 0 LOAD_GLOBAL 0 (RuntimeError)
3 RAISE_VARARGS 1
Looks reasonable to me. Paul, do you need help with unit tests? |
|
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2008-02-25 19:09:34 | belopolsky | set | spambayes_score: 0.215801 -> 0.21580128 recipients: + belopolsky, gvanrossum, nnorwitz, _doublep |
| 2008-02-25 19:09:34 | belopolsky | set | spambayes_score: 0.215801 -> 0.215801 messageid: <1203966574.28.0.390575433925.issue1394@psf.upfronthosting.co.za> |
| 2008-02-25 19:09:33 | belopolsky | link | issue1394 messages |
| 2008-02-25 19:09:33 | belopolsky | create | |