]>
Commit | Line | Data |
---|---|---|
494f8eac 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 | testGlobals = {'hello' : 'How are you?'} | |
10 | win = PyShell(nb, globals=testGlobals) | |
11 | win.Show(true) | |
12 | return win | |
13 | ||
14 | ||
15 | #---------------------------------------------------------------------- | |
16 | ||
17 | ||
18 | overview = """ | |
19 | A simple GUI version of the interactive interpreter. | |
20 | """ | |
21 |