]> git.saurik.com Git - wxWidgets.git/blame_incremental - wxPython/demo/PyCrust.py
cleaned up the checkbox creation code (~70 lines of code became 3)
[wxWidgets.git] / wxPython / demo / PyCrust.py
... / ...
CommitLineData
1
2
3from wxPython.lib.PyCrust import shell, version
4
5
6#----------------------------------------------------------------------
7
8intro = 'Welcome To PyCrust %s - The Flakiest Python Shell' % version.VERSION
9
10def runTest(frame, nb, log):
11 win = shell.Shell(nb, -1, introText=intro)
12 return win
13
14#----------------------------------------------------------------------
15
16overview = shell.__doc__