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
This commit is contained in:
Robin Dunn 2002-04-17 18:00:36 +00:00
parent 3f4f90c2a0
commit f772a88b55
3 changed files with 9 additions and 9 deletions

View File

@ -6,7 +6,7 @@ __cvsid__ = "$Id$"
__revision__ = "$Revision$"[11:-2]
from wxPython.wx import *
from PyCrust.crust import CrustFrame
from crust import CrustFrame
class App(wxApp):

View File

@ -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

View File

@ -6,7 +6,7 @@ __cvsid__ = "$Id$"
__revision__ = "$Revision$"[11:-2]
from wxPython.wx import *
from PyCrust.shell import ShellFrame
from shell import ShellFrame
class App(wxApp):