From c1c53e8e2c5631c7571b2a6138c05467e7cb7a80 Mon Sep 17 00:00:00 2001 From: ccremers Date: Tue, 8 Aug 2006 13:50:07 +0000 Subject: [PATCH] - Testing thing. --- gui/bare.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 gui/bare.py diff --git a/gui/bare.py b/gui/bare.py new file mode 100755 index 0000000..7067021 --- /dev/null +++ b/gui/bare.py @@ -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() +