mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
#18196: Avoid displaying spurious SystemExit tracebacks.
This commit is contained in:
parent
036e84924a
commit
f467521927
2 changed files with 6 additions and 0 deletions
|
@ -339,6 +339,10 @@ class Executive(object):
|
|||
exec(code, self.locals)
|
||||
finally:
|
||||
interruptable = False
|
||||
except SystemExit:
|
||||
# Scripts that raise SystemExit should just
|
||||
# return to the interactive prompt
|
||||
pass
|
||||
except:
|
||||
self.usr_exc_info = sys.exc_info()
|
||||
if quitting:
|
||||
|
|
|
@ -81,6 +81,8 @@ Library
|
|||
IDLE
|
||||
----
|
||||
|
||||
- Issue #18196: Avoid displaying spurious SystemExit tracebacks.
|
||||
|
||||
- Issue #5492: Avoid traceback when exiting IDLE caused by a race condition.
|
||||
|
||||
- Issue #17511: Keep IDLE find dialog open after clicking "Find Next".
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue