Browse Source

Fix tkinter example

Thomas Kluyver 11 năm trước cách đây
mục cha
commit
24815c0186
1 tập tin đã thay đổi với 0 bổ sung2 xóa
  1. 0 2
      examples/tkinter/example.py

+ 0 - 2
examples/tkinter/example.py

@@ -1,11 +1,9 @@
 from tkinter import *
 from tkinter import *
-import foopkg
 
 
 root = Tk()
 root = Tk()
 root.title("Python Example App")
 root.title("Python Example App")
 t = Text(root)
 t = Text(root)
 t.insert(END, "Type stuff here.")
 t.insert(END, "Type stuff here.")
-t.insert(END, foopkg.strvar)
 t.pack()
 t.pack()
 
 
 w = Label(root, text="Hello, world!")
 w = Label(root, text="Hello, world!")