python中Pylint的信息类型

2024年06月27日 python类 Python51

说明

1、*(C)约定,用于违反编程标准。

2、*(R)重构,针对不好的代码口味。

3、*(W)警告python的特定问题。

4、*(E)错误用于代码中可能的错误。

5、*(F)致命的。

如果发生错误,pylint将无法进一步处理。

实例

Output:
   Using the default text output, the message format is :
  MESSAGE_TYPE: LINE_NUM:[OBJECT:] MESSAGE
  There are 5 kind of message types :
  * (C) convention, for programming standard violation
  * (R) refactor, for bad code smell
  * (W) warning, for python specific problems
  * (E) error, for probable bugs in the code
  * (F) fatal, if an error occurred which prevented pylint from doing further processing.

本文链接:http://so.lmcjl.com/news/7371/

展开阅读全文