diff options
author | Kurt B. Kaiser <kbk@shore.net> | 2001-07-13 04:18:32 (GMT) |
---|---|---|
committer | Kurt B. Kaiser <kbk@shore.net> | 2001-07-13 04:18:32 (GMT) |
commit | 7eea271464dccc48525cae2b677a68dd7f442c5d (patch) | |
tree | b0dd9c9d83dc9393b88aabf12e0ec9adfcf99468 | |
parent | 0e5fb0a61839f320f91c7001e396b4d1184b4e34 (diff) | |
download | cpython-7eea271464dccc48525cae2b677a68dd7f442c5d.zip cpython-7eea271464dccc48525cae2b677a68dd7f442c5d.tar.gz cpython-7eea271464dccc48525cae2b677a68dd7f442c5d.tar.bz2 |
py-cvs-rel2_1 (Rev 1.4) merge - move "import *" to module level
-rw-r--r-- | Lib/idlelib/IOBinding.py | 2 |
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() |