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