projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Some tweaks and cleanup.
[wxWidgets.git]
/
wxPython
/
demo
/
PyShell.py
diff --git
a/wxPython/demo/PyShell.py
b/wxPython/demo/PyShell.py
index 41edebf719300ad1ae94712851b32e8f17eae382..450f73925b0be011f1b3a6fab0180dd82ad202fc 100644
(file)
--- 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