]> git.saurik.com Git - wxWidgets.git/blame_incremental - wxPython/demo/PyCrust.py
fix text scrolling in GTK2 (patch 703988)
[wxWidgets.git] / wxPython / demo / PyCrust.py
... / ...
CommitLineData
1
2from wx import py
3
4
5#----------------------------------------------------------------------
6
7intro = 'Welcome To PyCrust %s - The Flakiest Python Shell' % py.version.VERSION
8
9def runTest(frame, nb, log):
10 win = py.crust.Crust(nb, intro=intro)
11 return win
12
13#----------------------------------------------------------------------
14
15overview = py.filling.__doc__ + "\n\n" + py.crust.__doc__
16
17if __name__ == '__main__':
18 import sys,os
19 import run
20 run.main(['', os.path.basename(sys.argv[0])])
21