http.server python3.5的源代码在哪里?是否有一个git存储库?
答案 0 :(得分:0)
您的硬盘上有副本:
>>> import http.server
>>> http.server
<module 'http.server' from '/pathTo/your/python/installation/http/server.py'>
这假设您安装了Python 3.5并运行它。
答案 1 :(得分:0)
答案 2 :(得分:0)
Python不使用Git,他们使用Mercurial - 部分原因是Mercurial是用Python编写的。
就在这里:https://hg.python.org/cpython/file/3.5/Lib/http/server.py
更新:由于最初的答案,Python已经转而使用Git和GitHub。代码现在在这里:https://github.com/python/cpython/blob/3.5/Lib/http/server.py