Pylint是一个Python代码风格的检查工具,功能上类似于pychecker,默认用PEP8作为代码风格标准,它所提供的功能包括:检查代码行的长度,检查变量命名是否符合规范,检查声明的接口是否被真正的实现等等,详细信息参考:http://docs.pylint.org/。
安装:
sudo apt-get install pylint ? #Ubuntu
pip install pyint ? #windows
更多安装方式可以查看:http://www.pylint.org/#install
使用:
pylint [options] module_or_package
比如运行:pylint setup.py ?,输出:
No config file found, using default configuration
************* Module setup
C: 1,0: Missing docstring
C: 6,0: Invalid name "here" for type constant (should match (([A-Z_][A-Z0-9_]*)|(__.*__))$)
C: 10,0: Invalid name "requires" for type constant (should match (([A-Z_][A-Z0-9_]*)|(__.*__))$)
C: 31,0: Comma not followed by a space
if sys.version_info[:3] < (2,5,0):
这部分是源代码的分析结果,其格式是: 第一行都是这样子: ****************** Module 模块的名称 接下来的几行就是message,其格式为:
MESSAGE TYPE: LINE NUM:[OBJECT:] MESSAGE MESSAGE有如下几种类型:
pylint -r n 第二部分就是一些统计报告,这部分可以不关注。
原文:http://www.cnblogs.com/frchen/p/5749961.html