2001-08-14 15:19:48 -04:00
|
|
|
|
|
|
|
|
2001-08-28 15:21:45 -04:00
|
|
|
from wxPython.lib.PyCrust import shell, version
|
2001-08-14 15:19:48 -04:00
|
|
|
|
|
|
|
|
|
|
|
#----------------------------------------------------------------------
|
|
|
|
|
2001-08-28 15:21:45 -04:00
|
|
|
intro = 'Welcome To PyCrust %s - The Flakiest Python Shell' % version.VERSION
|
2001-08-14 15:19:48 -04:00
|
|
|
|
|
|
|
def runTest(frame, nb, log):
|
2001-08-28 15:21:45 -04:00
|
|
|
win = shell.Shell(nb, -1, introText=intro)
|
|
|
|
return win
|
2001-08-14 15:19:48 -04:00
|
|
|
|
|
|
|
#----------------------------------------------------------------------
|
|
|
|
|
2001-08-28 15:21:45 -04:00
|
|
|
overview = shell.__doc__
|