浏览代码

Fix tkinter example

Thomas Kluyver 11 年之前
父节点
当前提交
24815c0186
共有 1 个文件被更改,包括 0 次插入2 次删除
  1. 0 2
      examples/tkinter/example.py

+ 0 - 2
examples/tkinter/example.py

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