summaryrefslogtreecommitdiff
path: root/Lib/stdwin/WindowParent.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1992-01-01 19:35:13 +0000
committerGuido van Rossum <guido@python.org>1992-01-01 19:35:13 +0000
commitbdfcfccbe591e15221f35add01132174c9b4e669 (patch)
tree7e5f0d52b8c44e623b12e8f4b5cd645c361e5aeb /Lib/stdwin/WindowParent.py
parent4d8e859e8f0a209a7e999ce9cc0988156c795949 (diff)
downloadcpython-git-bdfcfccbe591e15221f35add01132174c9b4e669.tar.gz
New == syntax
Diffstat (limited to 'Lib/stdwin/WindowParent.py')
-rwxr-xr-xLib/stdwin/WindowParent.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/Lib/stdwin/WindowParent.py b/Lib/stdwin/WindowParent.py
index a0593c5f23..697ed07b74 100755
--- a/Lib/stdwin/WindowParent.py
+++ b/Lib/stdwin/WindowParent.py
@@ -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()