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!")