2 from wxPython
.wx
import *
3 from wxPython
.lib
.shell
import PyShell
5 #----------------------------------------------------------------------
8 def runTest(frame
, nb
, log
):
9 testGlobals
= {'hello' : 'How are you?'}
10 win
= PyShell(nb
, globals=testGlobals
)
15 #----------------------------------------------------------------------
19 A simple GUI version of the interactive interpreter.