commit | bd8341eeeb45b03effb2b511af699b635eb30a6c | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Fri Apr 10 19:17:41 1998 +0000 |
committer | Guido van Rossum <guido@python.org> | Fri Apr 10 19:17:41 1998 +0000 |
tree | c4a4b29da800e3a05b2c4d53267d08e88d2910d6 | |
parent | bd24eb447e398906a903de7c407f4afc9ec939d2 [diff] |
Catch exceptions in final self.destroy() call.
diff --git a/Demo/tkinter/guido/electrons.py b/Demo/tkinter/guido/electrons.py index d764380..f16c3fa 100755 --- a/Demo/tkinter/guido/electrons.py +++ b/Demo/tkinter/guido/electrons.py
@@ -55,8 +55,11 @@ try: while 1: self.random_move(self.n) - finally: - self.tk.destroy() + except TclError: + try: + self.tk.destroy() + except TclError: + pass # Main program