summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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()