New == syntax

This commit is contained in:
Guido van Rossum 1992-01-01 19:35:13 +00:00
parent 4d8e859e8f
commit bdfcfccbe5
73 changed files with 419 additions and 391 deletions

View file

@ -149,26 +149,26 @@ class WindowParent(ManageOneChild):
# Only call dispatch once we are realized
#
def dispatch(self, (type, win, detail)):
if type = WE_DRAW:
if type == WE_DRAW:
d = self.win.begindrawing()
self.child.draw(d, detail)
del d
if self.do_altdraw: self.child.altdraw(detail)
elif type = WE_MOUSE_DOWN:
elif type == WE_MOUSE_DOWN:
if self.do_mouse: self.child.mouse_down(detail)
elif type = WE_MOUSE_MOVE:
elif type == WE_MOUSE_MOVE:
if self.do_mouse: self.child.mouse_move(detail)
elif type = WE_MOUSE_UP:
elif type == WE_MOUSE_UP:
if self.do_mouse: self.child.mouse_up(detail)
elif type in (WE_CHAR, WE_COMMAND):
if self.do_keybd: self.child.keybd(type, detail)
elif type = WE_TIMER:
elif type == WE_TIMER:
if self.do_timer: self.child.timer()
elif type = WE_SIZE:
elif type == WE_SIZE:
self.fixup()
elif type = WE_CLOSE:
elif type == WE_CLOSE:
self.close_trigger()
elif type = WE_MENU:
elif type == WE_MENU:
self.menu_trigger(detail)
if self.pending_destroy:
self.destroy()