]> git.saurik.com Git - wxWidgets.git/blob - wxPython/samples/wxPIA_book/Chapter-08/simple_frame.py
don't use strlen() to verify the length of the string as it can contain embedded...
[wxWidgets.git] / wxPython / samples / wxPIA_book / Chapter-08 / simple_frame.py
1 import wx
2
3 if __name__ == '__main__':
4 app = wx.PySimpleApp()
5 frame = wx.Frame(None, -1, "A Frame", style=wx.DEFAULT_FRAME_STYLE,
6 size=(200, 100))
7 frame.Show()
8 app.MainLoop()