- Well we really don't need that anymore, the problem is solved.

This commit is contained in:
ccremers 2006-08-08 14:03:00 +00:00
parent 3256a38a65
commit d2e3aaa869

View File

@ -1,14 +0,0 @@
#!/usr/bin/python
import wx
class App(wx.App):
def OnInit(self):
frame = wx.Frame(parent=None, title='Bare')
frame.Show(1)
return True
app = App()
app.MainLoop()