summaryrefslogtreecommitdiffstats
path: root/Mac/Demo/example2
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>1996-09-17 12:39:12 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>1996-09-17 12:39:12 (GMT)
commitef5cd05c3d68137a59a84acd418342532e3940c6 (patch)
tree544f8c9b00c6eae068d570ccd5f4025b6c242dd9 /Mac/Demo/example2
parent4cb945454a91188823fd289a13e417bdd20050e2 (diff)
downloadcpython-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.py2
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)