diff --git a/wxPython/demo/PyShell.py b/wxPython/demo/PyShell.py new file mode 100644 index 0000000000..450f73925b --- /dev/null +++ b/wxPython/demo/PyShell.py @@ -0,0 +1,21 @@ + +from wxPython.wx import * +from wxPython.lib.shell import PyShell + +#---------------------------------------------------------------------- + + +def runTest(frame, nb, log): + testGlobals = {'hello' : 'How are you?'} + win = PyShell(nb, globals=testGlobals) + win.Show(true) + return win + + +#---------------------------------------------------------------------- + + +overview = """ +A simple GUI version of the interactive interpreter. +""" +