[code.view]

[top] / python / PyMOTW / pkgutil / pkgutil_nested.py

     #!/usr/bin/env python
     # encoding: utf-8
     #
     # Copyright (c) 2008 Doug Hellmann All rights reserved.
     #
     """
     """
     
     __version__ = "$Id$"
     #end_pymotw_header
     
     import nested
     
     import nested.shallow
     print 'nested.shallow:', nested.shallow.__file__
     nested.shallow.func()
     
     print
     import nested.second.deep
     print 'nested.second.deep:', nested.second.deep.__file__
     nested.second.deep.func()

[top] / python / PyMOTW / pkgutil / pkgutil_nested.py

contact | logmethods.com