[issue16582] Tkinter calls SystemExit with string

Serhiy Storchaka report at bugs.python.org
Mon Dec 3 15:25:15 CET 2012


Serhiy Storchaka added the comment:

The code was changed in the changeset e8a2a5e4c7b0.

> def _exit(code='0'):
>-       import sys
>-       sys.exit(getint(code))
>+       raise SystemExit, code

I think it is a bug and should be fixed.

----------
nosy: +gvanrossum, serhiy.storchaka

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue16582>
_______________________________________


More information about the Python-bugs-list mailing list