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