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/textedit/ped.py | |
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/textedit/ped.py')
-rw-r--r-- | Mac/Demo/textedit/ped.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mac/Demo/textedit/ped.py b/Mac/Demo/textedit/ped.py index 3999dae..5c2d0f6 100644 --- a/Mac/Demo/textedit/ped.py +++ b/Mac/Demo/textedit/ped.py @@ -295,7 +295,7 @@ class Ped(Application): w.close() if self._windows: return - raise self + self._quit() # # Edit menu |