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 terry.reedy
Recipients kbk, louielu, ppperry, roger.serwy, terry.reedy
Date 2017-05-30.18:27:04
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1496168824.9.0.520766314162.issue26949@psf.upfronthosting.co.za>
In-reply-to
Content
Louie> If you run your example in Python with -i, you will see the same behavior, except for the traceback, as with IDLE.

F:\dev\cpython>python -i -c "x=10; print(x); raise SystemExit"
Running Debug|Win32 interpreter...
10
Traceback (most recent call last):
  File "<string>", line 1, in <module>
SystemExit
>>> x
10

Ditto for "python -i testfile.py".  I would like the behavior to be the same when debugging.
History
Date User Action Args
2017-05-30 18:27:05terry.reedysetrecipients: + terry.reedy, kbk, roger.serwy, ppperry, louielu
2017-05-30 18:27:04terry.reedysetmessageid: <1496168824.9.0.520766314162.issue26949@psf.upfronthosting.co.za>
2017-05-30 18:27:04terry.reedylinkissue26949 messages
2017-05-30 18:27:04terry.reedycreate