]> git.saurik.com Git - wxWidgets.git/commitdiff
Removed package from imports since the modules are in the same package.
authorRobin Dunn <robin@alldunn.com>
Wed, 17 Apr 2002 18:00:36 +0000 (18:00 +0000)
committerRobin Dunn <robin@alldunn.com>
Wed, 17 Apr 2002 18:00:36 +0000 (18:00 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15188 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/wxPython/lib/PyCrust/PyCrustApp.py
wxPython/wxPython/lib/PyCrust/PyFillingApp.py
wxPython/wxPython/lib/PyCrust/PyShellApp.py

index fef1c40ee21ecb5512342d4b72860b718232c7e2..c6b93c7d14a7219283f48bbb0afa0bf2c19d34c3 100755 (executable)
@@ -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()
 
+
index efdcd6a6de4acbc8aee35c0887e30b3ad38910f2..6869f1aa733a6f97788f93c40ae4d3d482f3e816 100755 (executable)
@@ -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()
 
+
index ba39305ada79658dfd925d87472f40f02c03152f..04568c26f56f98544938ae49833c21d68cc7655d 100755 (executable)
@@ -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()
 
+
+