mirror of
https://github.com/python/cpython.git
synced 2025-11-04 11:49:12 +00:00
Issue #16582: use int exit code in tkinter._exit
This commit is contained in:
commit
14857cf8fa
1 changed files with 5 additions and 1 deletions
|
|
@ -148,8 +148,12 @@ def _tkerror(err):
|
||||||
"""Internal function."""
|
"""Internal function."""
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def _exit(code='0'):
|
def _exit(code=0):
|
||||||
"""Internal function. Calling it will throw the exception SystemExit."""
|
"""Internal function. Calling it will throw the exception SystemExit."""
|
||||||
|
try:
|
||||||
|
code = int(code)
|
||||||
|
except ValueError:
|
||||||
|
pass
|
||||||
raise SystemExit(code)
|
raise SystemExit(code)
|
||||||
|
|
||||||
_varnum = 0
|
_varnum = 0
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue