summaryrefslogtreecommitdiffstats
path: root/Lib/stdwin
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1991-08-16 13:24:58 (GMT)
committerGuido van Rossum <guido@python.org>1991-08-16 13:24:58 (GMT)
commit0b7448020a7b6ff7eb913635b54424989796e467 (patch)
tree29b23b9db5290df606a67e7264c6855d181be8ed /Lib/stdwin
parentdff84043e4431a3dfec55e386a1f35e76815adee (diff)
downloadcpython-0b7448020a7b6ff7eb913635b54424989796e467.zip
cpython-0b7448020a7b6ff7eb913635b54424989796e467.tar.gz
cpython-0b7448020a7b6ff7eb913635b54424989796e467.tar.bz2
integrate with stdwinq
Diffstat (limited to 'Lib/stdwin')
-rwxr-xr-xLib/stdwin/gwin.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/stdwin/gwin.py b/Lib/stdwin/gwin.py
index a53f69c..9dac882 100755
--- a/Lib/stdwin/gwin.py
+++ b/Lib/stdwin/gwin.py
@@ -4,7 +4,7 @@
# This is used as a base class from which to derive other window types.
# The mainloop() function here is an event dispatcher for all window types.
-import stdwin
+import stdwin, stdwinq
from stdwinevents import *
# XXX Old version of stdwinevents, should go
@@ -46,7 +46,7 @@ def open(title): # Open a generic window
def mainloop(): # Handle events until no windows left
while windows:
- treatevent(stdwin.getevent())
+ treatevent(stdwinq.getevent())
def treatevent(e): # Handle a stdwin event
type, w, detail = e