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