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