]>
git.saurik.com Git - wxWidgets.git/blob - wxPython/demo/PyCrustWithFilling.py
78a200a9d685b223f1d350d6c75dbdd7b0dfd760
2 from wxPython
.wx
import *
3 from wxPython
.lib
.PyCrust
import shell
, version
, filling
6 #----------------------------------------------------------------------
8 intro
= 'Welcome To PyCrust %s - The Flakiest Python Shell' % version
.VERSION
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 ingredients
=shellWin
.interp
.locals)
15 win
.SplitHorizontally(shellWin
, fillingWin
)
18 #----------------------------------------------------------------------
20 overview
= filling
.__doc
__