From: Robin Dunn Date: Mon, 30 Oct 2000 21:58:36 +0000 (+0000) Subject: Re-added a couple files that got left out of the merge somehow... X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/494f8eacda4baa8534d2d9adb61a7c470c8b4635 Re-added a couple files that got left out of the merge somehow... git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@8661 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/wxPython/demo/PyShell.py b/wxPython/demo/PyShell.py new file mode 100644 index 0000000000..450f73925b --- /dev/null +++ b/wxPython/demo/PyShell.py @@ -0,0 +1,21 @@ + +from wxPython.wx import * +from wxPython.lib.shell import PyShell + +#---------------------------------------------------------------------- + + +def runTest(frame, nb, log): + testGlobals = {'hello' : 'How are you?'} + win = PyShell(nb, globals=testGlobals) + win.Show(true) + return win + + +#---------------------------------------------------------------------- + + +overview = """ +A simple GUI version of the interactive interpreter. +""" +