19.2.4 嵌套包
对于嵌套包,值需要修改*包的路径。
import pkgutil
__path__ = pkgutil.extend_path(__path__,__name__)
__path__.revese()
shallow和deep模块都包含一个函数来打印一条消息,指示消息来自己安装版本还是来自开发版本。使用以下测试程序测试这些新包。
import nested
import nested.shallow
print('nested.shallow:',nested.shallow.__file__)
print()
import nested.second.deep
print('nested.second.deep:',nested.second.deep.__file__)
nested.second.deep.func()