X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f6bcfd974ef26faf6f91a62cac09827e09463fd1..9df06f5b696cde13b1220ae6ec60dc6f32d2ab6f:/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