]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/samples/wxPIA_book/Chapter-01/bare.py
move wxPython to new trunk
[wxWidgets.git] / wxPython / samples / wxPIA_book / Chapter-01 / bare.py
diff --git a/wxPython/samples/wxPIA_book/Chapter-01/bare.py b/wxPython/samples/wxPIA_book/Chapter-01/bare.py
deleted file mode 100644 (file)
index b9417f9..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
-import wx
-
-class App(wx.App):
-
-    def OnInit(self):
-        frame = wx.Frame(parent=None, title='Bare')
-        frame.Show()
-        return True
-
-app = App()
-app.MainLoop()