2001-08-14 19:19:48 +00:00
|
|
|
|
2003-12-09 01:23:28 +00:00
|
|
|
import wx.py as py
|
2001-08-14 19:19:48 +00:00
|
|
|
|
|
|
|
#----------------------------------------------------------------------
|
|
|
|
|
2003-07-02 23:13:10 +00:00
|
|
|
intro = 'Welcome To PyCrust %s - The Flakiest Python Shell' % py.version.VERSION
|
2001-08-14 19:19:48 +00:00
|
|
|
|
|
|
|
def runTest(frame, nb, log):
|
2003-07-02 23:13:10 +00:00
|
|
|
win = py.crust.Crust(nb, intro=intro)
|
2001-08-28 19:21:45 +00:00
|
|
|
return win
|
2001-08-14 19:19:48 +00:00
|
|
|
|
|
|
|
#----------------------------------------------------------------------
|
|
|
|
|
2003-07-02 23:13:10 +00:00
|
|
|
overview = py.filling.__doc__ + "\n\n" + py.crust.__doc__
|
2002-05-15 05:05:02 +00:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
2002-05-27 22:14:41 +00:00
|
|
|
import sys,os
|
2002-05-15 05:05:02 +00:00
|
|
|
import run
|
2004-03-05 00:06:33 +00:00
|
|
|
run.main(['', os.path.basename(sys.argv[0])] + sys.argv[1:])
|
2002-05-15 05:05:02 +00:00
|
|
|
|