[issue36958] IDLE should print exit message or status if one is provided

2019-05-20 Thread Terry J. Reedy
Terry J. Reedy added the comment: Thanks for the report. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue36958] IDLE should print exit message or status if one is provided

2019-05-20 Thread miss-islington
miss-islington added the comment: New changeset 2d94d4f1a5f54f73450d2982eab54a6301741a32 by Miss Islington (bot) in branch '3.7': bpo-36958: In IDLE, print exit message (GH-13435) https://github.com/python/cpython/commit/2d94d4f1a5f54f73450d2982eab54a6301741a32 -- nosy:

[issue36958] IDLE should print exit message or status if one is provided

2019-05-19 Thread miss-islington
Change by miss-islington : -- pull_requests: +13346 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue36958] IDLE should print exit message or status if one is provided

2019-05-19 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset 6d965b39b7a486dd9e96a60b19ee92382d668299 by Terry Jan Reedy in branch 'master': bpo-36958: In IDLE, print exit message (GH-13435) https://github.com/python/cpython/commit/6d965b39b7a486dd9e96a60b19ee92382d668299 --

[issue36958] IDLE should print exit message or status if one is provided

2019-05-19 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: +13345 stage: needs patch -> patch review ___ Python tracker ___ ___ Python-bugs-list

[issue36958] IDLE should print exit message or status if one is provided

2019-05-18 Thread Terry J. Reedy
Terry J. Reedy added the comment: https://docs.python.org/3/library/exceptions.html#SystemExit says: skip traceback, convert default None to 0, print any other non-int and convert to 1, and pass unprinted int to C exit(). I agree that IDLE should also print non-ints. The IDLE doc should

[issue36958] IDLE should print exit message or status if one is provided

2019-05-18 Thread Random832
New submission from Random832 : IDLE currently just returns to the interactive prompt when a script exits, even if SystemExit has arguments. This can be confusing to new users if they are using sys.exit to print a message. -- assignee: terry.reedy components: IDLE files: run.py.patch