Refresh of PyCrust

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15081 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2002-04-10 18:42:07 +00:00
parent 7cdaed0ba0
commit e0422aa695
2 changed files with 46 additions and 46 deletions

View File

@@ -3,10 +3,10 @@
__author__ = "Patrick K. O'Brien <pobrien@orbtech.com>"
__cvsid__ = "$Id$"
__version__ = "$Revision$"[11:-2]
__revision__ = "$Revision$"[11:-2]
from wxPython.wx import *
from shell import ShellFrame
from PyCrust.shell import ShellFrame
class App(wxApp):
@@ -14,7 +14,7 @@ class App(wxApp):
def OnInit(self):
locals = {'__app__': 'PyShell Standalone Application'}
self.shellFrame = ShellFrame(locals=locals, size=(800,600))
self.shellFrame = ShellFrame(locals=locals)
self.shellFrame.Show(true)
self.SetTopWindow(self.shellFrame)
# Add the application object to the sys module's namespace.