]>
Commit | Line | Data |
---|---|---|
fea018f8 RD |
1 | |
2 | from wxPython.wx import * | |
3 | from wxPython.lib.PyCrust import shell, version, filling | |
4 | ||
5 | ||
6 | #---------------------------------------------------------------------- | |
7 | ||
8 | intro = 'Welcome To PyCrust %s - The Flakiest Python Shell' % version.VERSION | |
9 | ||
10 | def runTest(frame, nb, log): | |
11 | win = wxSplitterWindow(nb, -1, size=(640, 480)) | |
12 | shellWin = shell.Shell(win, -1, introText=intro) | |
13 | fillingWin = filling.Filling(win, -1, size=(640, 480), | |
b1cfebd9 RD |
14 | rootObject=shellWin.interp.locals |
15 | ) | |
fea018f8 RD |
16 | win.SplitHorizontally(shellWin, fillingWin) |
17 | return win | |
18 | ||
19 | #---------------------------------------------------------------------- | |
20 | ||
21 | overview = filling.__doc__ |