]> git.saurik.com Git - wxWidgets.git/blame - wxPython/demo/PyCrust.py
A little tweak to the usage text
[wxWidgets.git] / wxPython / demo / PyCrust.py
CommitLineData
8fa876ca
RD
1# 11/13/2003 - Jeff Grimmett (grimmtooth@softhome.net)
2#
3# o Updated for wx namespace
4#
c7e7022c 5
8fa876ca 6import wx.py as py
c7e7022c
RD
7
8#----------------------------------------------------------------------
9
1fded56b 10intro = 'Welcome To PyCrust %s - The Flakiest Python Shell' % py.version.VERSION
c7e7022c
RD
11
12def runTest(frame, nb, log):
1fded56b 13 win = py.crust.Crust(nb, intro=intro)
00b6c4e3 14 return win
c7e7022c
RD
15
16#----------------------------------------------------------------------
17
1fded56b 18overview = py.filling.__doc__ + "\n\n" + py.crust.__doc__
0af45411
RD
19
20if __name__ == '__main__':
8641d30c 21 import sys,os
0af45411 22 import run
8641d30c 23 run.main(['', os.path.basename(sys.argv[0])])
0af45411 24