- Testing thing.

This commit is contained in:
ccremers 2006-08-08 13:50:07 +00:00
parent c1b44804e1
commit c1c53e8e2c

14
gui/bare.py Executable file
View File

@ -0,0 +1,14 @@
#!/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()