diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2003-03-03 12:28:04 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2003-03-03 12:28:04 (GMT) |
commit | 122152451e1bc7aaff69d28b8950afa7848c6de6 (patch) | |
tree | 074745983da2a54a66815550ae8a4c2f10729d97 /Mac/Tools | |
parent | 7451e3b4d5228a9e3efc837f6ecb2c156e07f538 (diff) | |
download | cpython-122152451e1bc7aaff69d28b8950afa7848c6de6.zip cpython-122152451e1bc7aaff69d28b8950afa7848c6de6.tar.gz cpython-122152451e1bc7aaff69d28b8950afa7848c6de6.tar.bz2 |
Don't call AEInteractWithUser unconditionally on a quit appleevent. The
EasyDIalogs methods will call it if needed.
Fixes #684975.
Diffstat (limited to 'Mac/Tools')
-rw-r--r-- | Mac/Tools/IDE/PythonIDEMain.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Mac/Tools/IDE/PythonIDEMain.py b/Mac/Tools/IDE/PythonIDEMain.py index 4401889..01969e9 100644 --- a/Mac/Tools/IDE/PythonIDEMain.py +++ b/Mac/Tools/IDE/PythonIDEMain.py @@ -156,8 +156,6 @@ class PythonIDE(Wapplication.Application): self.makehelpmenu() def quitevent(self, theAppleEvent, theReply): - from Carbon import AE - AE.AEInteractWithUser(50000000) self._quit() def suspendresume(self, onoff): |