
python源代码解析
文章平均质量分 77
潇垚
莲华圣路 开天光
展开
-
python BaseHTTPServer.py
"""HTTP server base class.Note: the class in this module doesn't implement any HTTP request; seeSimpleHTTPServer for simple implementations of GET, HEAD and POST(including CGI scripts). It does,原创 2015-11-09 16:23:37 · 1643 阅读 · 0 评论 -
Python SocketServer.py
#SocketServer.py代码解析__version__ = "0.4"import socketimport selectimport sysimport osimport errnotry: import threadingexcept ImportError: import dummy_threading as threading__all__原创 2015-11-09 15:20:13 · 1365 阅读 · 2 评论 -
python contextlib.py
python的contextlib模块解析原创 2015-12-16 17:16:27 · 1143 阅读 · 0 评论