]> git.saurik.com Git - wxWidgets.git/blame - wxPython/demo/PyShell.py
wxPython Merge #2 of 2.4 branch --> HEAD (branch tag: wxPy_2_4_merge_2)
[wxWidgets.git] / wxPython / demo / PyShell.py
CommitLineData
1fded56b
RD
1
2
3from wx import py
4
5
6#----------------------------------------------------------------------
7
8intro = 'Welcome To PyCrust %s - The Flakiest Python Shell' % py.version.VERSION
9
10def runTest(frame, nb, log):
11 win = py.shell.Shell(nb, -1, introText=intro)
12 return win
13
14#----------------------------------------------------------------------
15
16overview = py.shell.__doc__
17
18
19if __name__ == '__main__':
20 import sys,os
21 import run
22 run.main(['', os.path.basename(sys.argv[0])])
23