]>
Commit | Line | Data |
---|---|---|
c7e7022c RD |
1 | |
2 | ||
00b6c4e3 | 3 | from wxPython.lib.PyCrust import shell, version |
c7e7022c RD |
4 | |
5 | ||
6 | #---------------------------------------------------------------------- | |
7 | ||
00b6c4e3 | 8 | intro = 'Welcome To PyCrust %s - The Flakiest Python Shell' % version.VERSION |
c7e7022c RD |
9 | |
10 | def runTest(frame, nb, log): | |
00b6c4e3 RD |
11 | win = shell.Shell(nb, -1, introText=intro) |
12 | return win | |
c7e7022c RD |
13 | |
14 | #---------------------------------------------------------------------- | |
15 | ||
00b6c4e3 | 16 | overview = shell.__doc__ |
0af45411 RD |
17 | |
18 | ||
19 | if __name__ == '__main__': | |
8641d30c | 20 | import sys,os |
0af45411 | 21 | import run |
8641d30c | 22 | run.main(['', os.path.basename(sys.argv[0])]) |
0af45411 | 23 |