| 1 | |
| 2 | import wx.py as py |
| 3 | |
| 4 | #---------------------------------------------------------------------- |
| 5 | |
| 6 | intro = 'Welcome To PyCrust %s - The Flakiest Python Shell' % py.version.VERSION |
| 7 | |
| 8 | def runTest(frame, nb, log): |
| 9 | win = py.crust.Crust(nb, intro=intro) |
| 10 | return win |
| 11 | |
| 12 | #---------------------------------------------------------------------- |
| 13 | |
| 14 | overview = py.filling.__doc__ + "\n\n" + py.crust.__doc__ |
| 15 | |
| 16 | if __name__ == '__main__': |
| 17 | import sys,os |
| 18 | import run |
| 19 | run.main(['', os.path.basename(sys.argv[0])] + sys.argv[1:]) |
| 20 | |