From: Jack Jansen Date: Fri, 2 Aug 2002 14:04:42 +0000 (+0000) Subject: Got rid of a couple of OS9-isms. X-Git-Tag: v2.3c1~4786 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=94416e55d35e121a908fec30115a091f707c99e9;p=thirdparty%2FPython%2Fcpython.git Got rid of a couple of OS9-isms. --- diff --git a/Mac/Lib/MiniAEFrame.py b/Mac/Lib/MiniAEFrame.py index e5623016217f..ab54039919ce 100644 --- a/Mac/Lib/MiniAEFrame.py +++ b/Mac/Lib/MiniAEFrame.py @@ -82,7 +82,8 @@ class MiniApplication: if c == '.': raise KeyboardInterrupt, "Command-period" if c == 'q': - MacOS.OutputSeen() + if hasattr(MacOS, 'OutputSeen'): + MacOS.OutputSeen() self.quitting = 1 return elif what == mouseDown: @@ -98,12 +99,16 @@ class MiniApplication: name = self.applemenu.GetMenuItemText(item) Menu.OpenDeskAcc(name) elif id == self.quitid and item == 1: - MacOS.OutputSeen() + if hasattr(MacOS, 'OutputSeen'): + MacOS.OutputSeen() self.quitting = 1 Menu.HiliteMenu(0) return # Anything not handled is passed to Python/SIOUX - MacOS.HandleEvent(event) + if hasattr(MacOS, 'HandleEvent'): + MacOS.HandleEvent(event) + else: + print "Unhandled event:", event def getabouttext(self): return self.__class__.__name__