]> git.saurik.com Git - wxWidgets.git/blob - wxPython/demo/PyCrustWithFilling.py
added some test code
[wxWidgets.git] / wxPython / demo / PyCrustWithFilling.py
1
2 from wxPython.wx import *
3 from wxPython.lib.PyCrust import shell, version, filling
4
5
6 #----------------------------------------------------------------------
7
8 intro = 'Welcome To PyCrust %s - The Flakiest Python Shell' % version.VERSION
9
10 def runTest(frame, nb, log):
11 win = wxSplitterWindow(nb, -1, size=(640, 480))
12 shellWin = shell.Shell(win, -1, introText=intro)
13 fillingWin = filling.Filling(win, -1, size=(640, 480),
14 rootObject=shellWin.interp.locals
15 )
16 win.SplitHorizontally(shellWin, fillingWin)
17 return win
18
19 #----------------------------------------------------------------------
20
21 overview = filling.__doc__