]> git.saurik.com Git - wxWidgets.git/blame_incremental - wxPython/demo/PyCrust.py
Reworked how stock objects are initialized. They now have an
[wxWidgets.git] / wxPython / demo / PyCrust.py
... / ...
CommitLineData
1# 11/13/2003 - Jeff Grimmett (grimmtooth@softhome.net)
2#
3# o Updated for wx namespace
4#
5
6import wx.py as py
7
8#----------------------------------------------------------------------
9
10intro = 'Welcome To PyCrust %s - The Flakiest Python Shell' % py.version.VERSION
11
12def runTest(frame, nb, log):
13 win = py.crust.Crust(nb, intro=intro)
14 return win
15
16#----------------------------------------------------------------------
17
18overview = py.filling.__doc__ + "\n\n" + py.crust.__doc__
19
20if __name__ == '__main__':
21 import sys,os
22 import run
23 run.main(['', os.path.basename(sys.argv[0])])
24