]> git.saurik.com Git - wxWidgets.git/blame - wxPython/demo/PyCrust.py
wxGLCanvas updates
[wxWidgets.git] / wxPython / demo / PyCrust.py
CommitLineData
c7e7022c
RD
1
2
00b6c4e3 3from wxPython.lib.PyCrust import shell, version
c7e7022c
RD
4
5
6#----------------------------------------------------------------------
7
00b6c4e3 8intro = 'Welcome To PyCrust %s - The Flakiest Python Shell' % version.VERSION
c7e7022c
RD
9
10def runTest(frame, nb, log):
00b6c4e3
RD
11 win = shell.Shell(nb, -1, introText=intro)
12 return win
c7e7022c
RD
13
14#----------------------------------------------------------------------
15
00b6c4e3 16overview = shell.__doc__