diff options
author | Guido van Rossum <guido@python.org> | 1992-01-01 19:35:13 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1992-01-01 19:35:13 (GMT) |
commit | bdfcfccbe591e15221f35add01132174c9b4e669 (patch) | |
tree | 7e5f0d52b8c44e623b12e8f4b5cd645c361e5aeb /Lib/lib-stdwin/gwin.py | |
parent | 4d8e859e8f0a209a7e999ce9cc0988156c795949 (diff) | |
download | cpython-bdfcfccbe591e15221f35add01132174c9b4e669.zip cpython-bdfcfccbe591e15221f35add01132174c9b4e669.tar.gz cpython-bdfcfccbe591e15221f35add01132174c9b4e669.tar.bz2 |
New == syntax
Diffstat (limited to 'Lib/lib-stdwin/gwin.py')
-rw-r--r-- | Lib/lib-stdwin/gwin.py | 42 |
1 files changed, 21 insertions, 21 deletions
diff --git a/Lib/lib-stdwin/gwin.py b/Lib/lib-stdwin/gwin.py index c2ec11f..12ed90b 100644 --- a/Lib/lib-stdwin/gwin.py +++ b/Lib/lib-stdwin/gwin.py @@ -49,44 +49,44 @@ def mainloop(): # Handle events until no windows left def treatevent(e): # Handle a stdwin event type, w, detail = e - if type = WE_DRAW: + if type == WE_DRAW: w.draw(w, detail) - elif type = WE_MENU: + elif type == WE_MENU: m, item = detail m.action[item](w, m, item) - elif type = WE_COMMAND: + elif type == WE_COMMAND: treatcommand(w, detail) - elif type = WE_CHAR: + elif type == WE_CHAR: w.char(w, detail) - elif type = WE_MOUSE_DOWN: + elif type == WE_MOUSE_DOWN: if detail[1] > 1: w.m2down(w, detail) else: w.mdown(w, detail) - elif type = WE_MOUSE_MOVE: + elif type == WE_MOUSE_MOVE: w.mmove(w, detail) - elif type = WE_MOUSE_UP: + elif type == WE_MOUSE_UP: if detail[1] > 1: w.m2up(w, detail) else: w.mup(w, detail) - elif type = WE_SIZE: + elif type == WE_SIZE: w.size(w, w.getwinsize()) - elif type = WE_ACTIVATE: + elif type == WE_ACTIVATE: w.activate(w) - elif type = WE_DEACTIVATE: + elif type == WE_DEACTIVATE: w.deactivate(w) - elif type = WE_MOVE: + elif type == WE_MOVE: w.move(w) - elif type = WE_TIMER: + elif type == WE_TIMER: w.timer(w) - elif type = WE_CLOSE: + elif type == WE_CLOSE: w.close(w) def treatcommand(w, type): # Handle a we_command event - if type = WC_CLOSE: + if type == WC_CLOSE: w.close(w) - elif type = WC_RETURN: + elif type == WC_RETURN: w.enter(w) - elif type = WC_TAB: + elif type == WC_TAB: w.tab(w) - elif type = WC_BACKSPACE: + elif type == WC_BACKSPACE: w.backspace(w) elif type in (WC_LEFT, WC_UP, WC_RIGHT, WC_DOWN): w.arrow(w, type) @@ -101,13 +101,13 @@ def close(w): # Close method break def arrow(w, detail): # Arrow key method - if detail = WC_LEFT: + if detail == WC_LEFT: w.kleft(w) - elif detail = WC_UP: + elif detail == WC_UP: w.kup(w) - elif detail = WC_RIGHT: + elif detail == WC_RIGHT: w.kright(w) - elif detail = WC_DOWN: + elif detail == WC_DOWN: w.kdown(w) |