X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f6bcfd974ef26faf6f91a62cac09827e09463fd1..7c697725f1673f11ae35691b811508870b0fb7c5:/wxPython/demo/PyShell.py?ds=sidebyside

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