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