X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f6bcfd974ef26faf6f91a62cac09827e09463fd1..abb69c6c82d61cf18f14270650a68896a3d8ed47:/wxPython/demo/PyShell.py diff --git a/wxPython/demo/PyShell.py b/wxPython/demo/PyShell.py index 41edebf719..450f73925b 100644 --- a/wxPython/demo/PyShell.py +++ b/wxPython/demo/PyShell.py @@ -6,7 +6,8 @@ from wxPython.lib.shell import PyShell def runTest(frame, nb, log): - win = PyShell(nb) + testGlobals = {'hello' : 'How are you?'} + win = PyShell(nb, globals=testGlobals) win.Show(true) return win