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