]>
Commit | Line | Data |
---|---|---|
c7e7022c RD |
1 | |
2 | ||
3 | from wxPython.lib.PyCrust import PyCrustShell, PyCrustEditor, PyCrustVersion | |
4 | ||
5 | ||
6 | #---------------------------------------------------------------------- | |
7 | ||
8 | intro = 'Welcome To PyCrust %s - The Flakiest Python Shell' % PyCrustVersion.version | |
9 | ||
10 | def runTest(frame, nb, log): | |
11 | shell = PyCrustShell.Shell(nb, intro) | |
12 | return shell.editor | |
13 | ||
14 | #---------------------------------------------------------------------- | |
15 | ||
16 | overview = PyCrustShell.__doc__ |