mirror of
https://github.com/python/cpython.git
synced 2025-08-31 05:58:33 +00:00
Got rid of a couple of OS9-isms.
This commit is contained in:
parent
2eb4b18f94
commit
94416e55d3
1 changed files with 8 additions and 3 deletions
|
@ -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__
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue