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__
|
2002-05-15 01:05:02 -04:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
2002-05-27 18:14:41 -04:00
|
|
|
import sys,os
|
2002-05-15 01:05:02 -04:00
|
|
|
import run
|
2002-05-27 18:14:41 -04:00
|
|
|
run.main(['', os.path.basename(sys.argv[0])])
|
2002-05-15 01:05:02 -04:00
|
|
|
|