[Python-checkins] python/dist/src/Mac/Tools/IDE PythonIDEMain.py,1.30,1.31
jackjansen@users.sourceforge.net
jackjansen@users.sourceforge.net
2003年3月03日 04:28:07 -0800
Update of /cvsroot/python/python/dist/src/Mac/Tools/IDE
In directory sc8-pr-cvs1:/tmp/cvs-serv32050
Modified Files:
PythonIDEMain.py
Log Message:
Don't call AEInteractWithUser unconditionally on a quit appleevent. The
EasyDIalogs methods will call it if needed.
Fixes #684975.
Index: PythonIDEMain.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Mac/Tools/IDE/PythonIDEMain.py,v
retrieving revision 1.30
retrieving revision 1.31
diff -C2 -d -r1.30 -r1.31
*** PythonIDEMain.py 28 Feb 2003 15:18:59 -0000 1.30
--- PythonIDEMain.py 3 Mar 2003 12:28:04 -0000 1.31
***************
*** 157,162 ****
def quitevent(self, theAppleEvent, theReply):
- from Carbon import AE
- AE.AEInteractWithUser(50000000)
self._quit()
--- 157,160 ----