我正在研究python正则表达式(re.py
)源代码。
在re.py
他们导入了模块sre_compile
:
import sre_compile
我看一下模块sre_compile,他们在第13行导入模块_sre
import _sre, sys
我搜索了_sre.py
模块,但我无法在任何地方找到它,我甚至尝试过
在我的shell中找到_sre.py
。
最后我尝试使用python解释器找到它。我导入了_sre
,我试图查找__file__
的{{1}}属性,但它给了我以下错误:
_sre
我在哪里可以找到AttributeError: 'module' object has no attribute '__file__'
模块源代码?