Python 3.5 - Looking at source code - Where can I find genericpath module?
我正在查看python中的一些源代码,并看到它正在导入genericpath模块。我在哪里可以找到这个模块?
1 2 | import genericpath from genericpath import * |
搜索genericpath没有发现任何内容…
要检查模块所在的位置,可以使用
1 2 3 | >>> import genericpath >>> genericpath.__file__ 'C:\\Python27\\lib\\genericpath.pyc' |