From 494f8eacda4baa8534d2d9adb61a7c470c8b4635 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Mon, 30 Oct 2000 21:58:36 +0000 Subject: [PATCH] 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 --- wxPython/demo/PyShell.py | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 wxPython/demo/PyShell.py 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. +""" + -- 2.50.0