]> git.saurik.com Git - wxWidgets.git/blame - wxPython/demo/PyShell.py
fixed all's dependencies so that the makefile generates files.lst files
[wxWidgets.git] / wxPython / demo / PyShell.py
CommitLineData
494f8eac
RD
1
2from wxPython.wx import *
3from wxPython.lib.shell import PyShell
4
5#----------------------------------------------------------------------
6
7
8def 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
18overview = """
19A simple GUI version of the interactive interpreter.
20"""
21