]> git.saurik.com Git - wxWidgets.git/blob - utils/wxPython/demo/PyShell.py
Added a demo showing how to use wxPostEvent
[wxWidgets.git] / utils / wxPython / demo / PyShell.py
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