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 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:07gregory.p.smithsetrecipients: + gregory.p.smith, twouters, brett.cannon, jaraco, ned.deily
2016-09-13 22:31:07gregory.p.smithsetmessageid: <1473805867.68.0.630690505424.issue28131@psf.upfronthosting.co.za>
2016-09-13 22:31:07gregory.p.smithlinkissue28131 messages
2016-09-13 22:31:07gregory.p.smithcreate