commit | ac3625fcb95c2c54e40e1a27f2395811adbed03e | [log] [tgz] |
---|---|---|
author | Neal Norwitz <nnorwitz@gmail.com> | Fri Mar 17 05:49:33 2006 +0000 |
committer | Neal Norwitz <nnorwitz@gmail.com> | Fri Mar 17 05:49:33 2006 +0000 |
tree | 7ef987a510e3ad2e43ee67ca6854cd6af23673f9 | |
parent | fc85c92a85e08d39ea769a07a3dc2a3c83c21477 [diff] [blame] |
Remove sys.exc_type, sys.exc_value, sys.exc_traceback
diff --git a/Lib/lib-tk/Tkinter.py b/Lib/lib-tk/Tkinter.py index 37ddd3a..d600cd7 100644 --- a/Lib/lib-tk/Tkinter.py +++ b/Lib/lib-tk/Tkinter.py
@@ -1108,7 +1108,7 @@ def _report_exception(self): """Internal function.""" import sys - exc, val, tb = sys.exc_type, sys.exc_value, sys.exc_traceback + exc, val, tb = sys.exc_info() root = self._root() root.report_callback_exception(exc, val, tb) def _configure(self, cmd, cnf, kw):