gpt4 book ai didi

python - 有没有办法在 Python 中访问父模块

转载 作者:太空狗 更新时间:2023-10-29 22:23:51 24 4
gpt4 key购买 nike

我需要知道是否有办法从子模块访问父模块。如果我导入子模块:

from subprocess import types

我有 types - 是否有一些 Python 魔术可以从 types 访问 subprocess 模块?对于类 ().__class__.__bases__[0].__subclasses__() 类似的东西。

最佳答案

如果您访问了一个模块,您通常可以从 sys.modules 字典中找到它。 Python 不保留名称的“父指针”,特别是因为关系不是一对一的。例如,使用您的示例:

>>> from subprocess import types
>>> types
<module 'types' from '/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/types.pyc'>
>>> import sys
>>> sys.modules['subprocess']
<module 'subprocess' from '/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/subprocess.pyc'>

如果您注意到 subprocess 模块中的 types 只是其中的 import types 语句的产物。如果您需要该模块,您只需导入类型

事实上,subprocess 的 future 版本可能不再导入 types,您的代码将会中断。您应该只导入出现在模块的 __all__ 列表中的名称;将其他名称视为实现细节。

所以,例如:

>>> import subprocess
>>> dir(subprocess)
['CalledProcessError', 'MAXFD', 'PIPE', 'Popen', 'STDOUT', '_PIPE_BUF', '__all__', '__builtins__', '__doc__',
'__file__', '__name__', '__package__', '_active', '_cleanup', '_demo_posix', '_demo_windows', '_eintr_retry_call',
'_has_poll', 'call', 'check_call', 'check_output', 'errno', 'fcntl', 'gc', 'list2cmdline', 'mswindows', 'os',
'pickle', 'select', 'signal', 'sys', 'traceback', 'types']
>>> subprocess.__all__
['Popen', 'PIPE', 'STDOUT', 'call', 'check_call', 'check_output', 'CalledProcessError']

您可以看到,subprocess 中可见的大多数名称只是它导入的其他顶级模块。

关于python - 有没有办法在 Python 中访问父模块,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5286210/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com