Răsfoiți Sursa

Remove incompatible tkinter example

Thomas Kluyver 7 ani în urmă
părinte
comite
1cadefef7e
2 a modificat fișierele cu 0 adăugiri și 20 ștergeri
  1. 0 13
      examples/tkinter/exampleapp.py
  2. 0 7
      examples/tkinter/installer.cfg

+ 0 - 13
examples/tkinter/exampleapp.py

@@ -1,13 +0,0 @@
-from tkinter import *
-
-def main():
-    root = Tk()
-    root.title("Python Example App")
-    t = Text(root)
-    t.insert(END, "Type stuff here.")
-    t.pack()
-
-    w = Label(root, text="Hello, world!")
-    w.pack()
-
-    root.mainloop()

+ 0 - 7
examples/tkinter/installer.cfg

@@ -1,7 +0,0 @@
-[Application]
-name=My App
-version=1.0
-entry_point=exampleapp:main
-
-[Include]
-packages=exampleapp