diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 1996-09-17 12:39:12 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 1996-09-17 12:39:12 (GMT) |
commit | ef5cd05c3d68137a59a84acd418342532e3940c6 (patch) | |
tree | 544f8c9b00c6eae068d570ccd5f4025b6c242dd9 /Mac/Demo/example2 | |
parent | 4cb945454a91188823fd289a13e417bdd20050e2 (diff) | |
download | cpython-ef5cd05c3d68137a59a84acd418342532e3940c6.zip cpython-ef5cd05c3d68137a59a84acd418342532e3940c6.tar.gz cpython-ef5cd05c3d68137a59a84acd418342532e3940c6.tar.bz2 |
Calling Application._quit() is now preferred over raising self.
Diffstat (limited to 'Mac/Demo/example2')
-rw-r--r-- | Mac/Demo/example2/InterslipControl-2.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mac/Demo/example2/InterslipControl-2.py b/Mac/Demo/example2/InterslipControl-2.py index 4945864..90d57dd 100644 --- a/Mac/Demo/example2/InterslipControl-2.py +++ b/Mac/Demo/example2/InterslipControl-2.py @@ -51,7 +51,7 @@ class InterslipControl(FrameWork.Application): self.quititem = FrameWork.MenuItem(m, "Quit", "Q", self.quit) def quit(self, *args): - raise self + self._quit() def do_about(self, *args): f = Dlg.GetNewDialog(ID_ABOUT, -1) |