]> git.saurik.com Git - wxWidgets.git/blame - utils/wxPython/demo/PyShell.py
Added some test code...
[wxWidgets.git] / utils / wxPython / demo / PyShell.py
CommitLineData
f0261a72
RD
1
2from wxPython.wx import *
3from wxPython.lib.shell import PyShell
4
5#----------------------------------------------------------------------
6
7
8def runTest(frame, nb, log):
9 win = PyShell(nb)
10 win.Show(true)
11 return win
12
13
14#----------------------------------------------------------------------
15
16
17overview = """
18A simple GUI version of the interactive interpreter.
19"""
20