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