]>
Commit | Line | Data |
---|---|---|
f0261a72 RD |
1 | |
2 | from wxPython.wx import * | |
3 | from wxPython.lib.shell import PyShell | |
4 | ||
5 | #---------------------------------------------------------------------- | |
6 | ||
7 | ||
8 | def runTest(frame, nb, log): | |
9 | win = PyShell(nb) | |
10 | win.Show(true) | |
11 | return win | |
12 | ||
13 | ||
14 | #---------------------------------------------------------------------- | |
15 | ||
16 | ||
17 | overview = """ | |
18 | A simple GUI version of the interactive interpreter. | |
19 | """ | |
20 |