From: Robin Dunn Date: Wed, 17 Apr 2002 18:00:36 +0000 (+0000) Subject: Removed package from imports since the modules are in the same package. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/f772a88b55a24234a48f54391779568f48568534?ds=inline Removed package from imports since the modules are in the same package. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15188 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/wxPython/wxPython/lib/PyCrust/PyCrustApp.py b/wxPython/wxPython/lib/PyCrust/PyCrustApp.py index fef1c40ee2..c6b93c7d14 100755 --- a/wxPython/wxPython/lib/PyCrust/PyCrustApp.py +++ b/wxPython/wxPython/lib/PyCrust/PyCrustApp.py @@ -6,12 +6,12 @@ __cvsid__ = "$Id$" __revision__ = "$Revision$"[11:-2] from wxPython.wx import * -from PyCrust.crust import CrustFrame +from crust import CrustFrame class App(wxApp): """PyCrust standalone application.""" - + def OnInit(self): locals = {'__app__': 'PyCrust Standalone Application'} self.crustFrame = CrustFrame(locals=locals) @@ -33,4 +33,4 @@ def main(): if __name__ == '__main__': main() - + diff --git a/wxPython/wxPython/lib/PyCrust/PyFillingApp.py b/wxPython/wxPython/lib/PyCrust/PyFillingApp.py index efdcd6a6de..6869f1aa73 100755 --- a/wxPython/wxPython/lib/PyCrust/PyFillingApp.py +++ b/wxPython/wxPython/lib/PyCrust/PyFillingApp.py @@ -8,7 +8,7 @@ __revision__ = "$Revision$"[11:-2] # We use this object to get more introspection when run standalone. application = None -from PyCrust import filling +import filling # These are imported just to have something interesting to inspect. from PyCrust import crust @@ -32,4 +32,4 @@ def main(): if __name__ == '__main__': main() - + diff --git a/wxPython/wxPython/lib/PyCrust/PyShellApp.py b/wxPython/wxPython/lib/PyCrust/PyShellApp.py index ba39305ada..04568c26f5 100755 --- a/wxPython/wxPython/lib/PyCrust/PyShellApp.py +++ b/wxPython/wxPython/lib/PyCrust/PyShellApp.py @@ -6,12 +6,12 @@ __cvsid__ = "$Id$" __revision__ = "$Revision$"[11:-2] from wxPython.wx import * -from PyCrust.shell import ShellFrame +from shell import ShellFrame class App(wxApp): """PyShell standalone application.""" - + def OnInit(self): locals = {'__app__': 'PyShell Standalone Application'} self.shellFrame = ShellFrame(locals=locals) @@ -33,5 +33,5 @@ def main(): if __name__ == '__main__': main() - - + +