X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e234d4c9b72709629e655b2935a3bf1262eebcb1..1fded56b375bf7a4687af1cdb182899614c1b2a8:/wxPython/demo/PyCrustWithFilling.py diff --git a/wxPython/demo/PyCrustWithFilling.py b/wxPython/demo/PyCrustWithFilling.py deleted file mode 100644 index a90c61649a..0000000000 --- a/wxPython/demo/PyCrustWithFilling.py +++ /dev/null @@ -1,28 +0,0 @@ - -from wxPython.wx import wxSplitterWindow -from wxPython.lib.PyCrust import shell, version, filling - - -#---------------------------------------------------------------------- - -intro = 'Welcome To PyCrust %s - The Flakiest Python Shell' % version.VERSION - -def runTest(frame, nb, log): - win = wxSplitterWindow(nb, -1, size=(640, 480)) - shellWin = shell.Shell(win, -1, introText=intro) - fillingWin = filling.Filling(win, -1, size=(640, 480), - rootObject=shellWin.interp.locals, - rootIsNamespace=1 - ) - win.SplitHorizontally(shellWin, fillingWin) - return win - -#---------------------------------------------------------------------- - -overview = filling.__doc__ - -if __name__ == '__main__': - import sys,os - import run - run.main(['', os.path.basename(sys.argv[0])]) -