]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/demo/PyShell.py
move wxPython to new trunk
[wxWidgets.git] / wxPython / demo / PyShell.py
diff --git a/wxPython/demo/PyShell.py b/wxPython/demo/PyShell.py
deleted file mode 100644 (file)
index 0c9fa94..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-
-import  wx.py   as  py
-
-#----------------------------------------------------------------------
-
-intro = 'Welcome To PyCrust %s - The Flakiest Python Shell' % py.version.VERSION
-
-def runTest(frame, nb, log):
-    win = py.shell.Shell(nb, -1, introText=intro)
-    return win
-
-#----------------------------------------------------------------------
-
-overview = py.shell.__doc__
-
-
-if __name__ == '__main__':
-    import sys,os
-    import run
-    run.main(['', os.path.basename(sys.argv[0])] + sys.argv[1:])
-