summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib
diff options
context:
space:
mode:
authorKurt B. Kaiser <kbk@shore.net>2001-07-13 04:18:32 (GMT)
committerKurt B. Kaiser <kbk@shore.net>2001-07-13 04:18:32 (GMT)
commit7eea271464dccc48525cae2b677a68dd7f442c5d (patch)
treeb0dd9c9d83dc9393b88aabf12e0ec9adfcf99468 /Lib/idlelib
parent0e5fb0a61839f320f91c7001e396b4d1184b4e34 (diff)
downloadcpython-7eea271464dccc48525cae2b677a68dd7f442c5d.zip
cpython-7eea271464dccc48525cae2b677a68dd7f442c5d.tar.gz
cpython-7eea271464dccc48525cae2b677a68dd7f442c5d.tar.bz2
py-cvs-rel2_1 (Rev 1.4) merge - move "import *" to module level
Diffstat (limited to 'Lib/idlelib')
-rw-r--r--Lib/idlelib/IOBinding.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/IOBinding.py b/Lib/idlelib/IOBinding.py
index 07b04f3..4875d11 100644
--- a/Lib/idlelib/IOBinding.py
+++ b/Lib/idlelib/IOBinding.py
@@ -222,7 +222,6 @@ class IOBinding:
def test():
- from Tkinter import *
root = Tk()
class MyEditWin:
def __init__(self, text):
@@ -251,4 +250,5 @@ def test():
root.mainloop()
if __name__ == "__main__":
+ from Tkinter import *
test()