关于Python 3.5:Python 3.5 – 查看源代码 – 我在哪里可以找到genericpath模块?

Python 3.5 - Looking at source code - Where can I find genericpath module?

我正在查看python中的一些源代码,并看到它正在导入genericpath模块。我在哪里可以找到这个模块?

1
2
import genericpath
from genericpath import *

搜索genericpath没有发现任何内容…


要检查模块所在的位置,可以使用__file__属性。

1
2
3
>>> import genericpath
>>> genericpath.__file__
'C:\\Python27\\lib\\genericpath.pyc'

genericpath包含了os.path模块(ntpathposixpath的公共实现。通常,您不应该显式地使用这些名称中的任何一个,os.path将发送所有请求以更正底层库。