소스 검색

Remove incompatible tkinter example

Thomas Kluyver 7 년 전
부모
커밋
1cadefef7e
2개의 변경된 파일0개의 추가작업 그리고 20개의 파일을 삭제
  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