其他分享
首页 > 其他分享> > 第十九章:模块和包-pkgutil:包工具-嵌套包

第十九章:模块和包-pkgutil:包工具-嵌套包

作者:互联网

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()

标签:__,pkgutil,shallow,second,deep,nested,嵌套,第十九章,import
来源: https://blog.csdn.net/weixin_43193719/article/details/98348700