Message276360
| Author |
gregory.p.smith |
| Recipients |
brett.cannon, gregory.p.smith, jaraco, ned.deily, twouters |
| Date |
2016年09月13日.22:31:07 |
| SpamBayes Score |
-1.0 |
| Marked as misclassified |
Yes |
| Message-id |
<1473805867.68.0.630690505424.issue28131@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
from the zip:
>>> dis.dis(mod.test)
3 0 LOAD_GLOBAL 0 (print)
2 LOAD_FAST 0 (val)
4 CALL_FUNCTION 1
6 POP_TOP
8 LOAD_CONST 0 (None)
10 RETURN_VALUE
from the filesystem:
>>> dis.dis(mod.test)
2 0 LOAD_FAST 0 (val)
2 POP_JUMP_IF_TRUE 8
4 LOAD_GLOBAL 0 (AssertionError)
6 RAISE_VARARGS 1
3 >> 8 LOAD_GLOBAL 1 (print)
10 LOAD_FAST 0 (val)
12 CALL_FUNCTION 1
14 POP_TOP
16 LOAD_CONST 0 (None)
18 RETURN_VALUE |
|
History
|
|---|
| Date |
User |
Action |
Args |
| 2016年09月13日 22:31:07 | gregory.p.smith | set | recipients:
+ gregory.p.smith, twouters, brett.cannon, jaraco, ned.deily |
| 2016年09月13日 22:31:07 | gregory.p.smith | set | messageid: <1473805867.68.0.630690505424.issue28131@psf.upfronthosting.co.za> |
| 2016年09月13日 22:31:07 | gregory.p.smith | link | issue28131 messages |
| 2016年09月13日 22:31:07 | gregory.p.smith | create |
|