]> git.saurik.com Git - wxWidgets.git/blob - wxPython/samples/wxPIA_book/Chapter-01/bare.py
fixed wxVsnprintf() to write as much as it can if the output buffer is too short
[wxWidgets.git] / wxPython / samples / wxPIA_book / Chapter-01 / bare.py
1 import wx
2
3 class App(wx.App):
4
5 def OnInit(self):
6 frame = wx.Frame(parent=None, title='Bare')
7 frame.Show()
8 return True
9
10 app = App()
11 app.MainLoop()