tests/tools/check_source.sh
changeset 1866 9d1e68d557bf
parent 1865 0bd5b3099144
child 1867 418777c1fbc7
equal deleted inserted replaced
1865:0bd5b3099144 1866:9d1e68d557bf
   240     enable=$enable,E1305          # (too-many-format-args) Too many arguments for format string
   240     enable=$enable,E1305          # (too-many-format-args) Too many arguments for format string
   241     enable=$enable,E0704          # (misplaced-bare-raise) The raise statement is not inside an except clause
   241     enable=$enable,E0704          # (misplaced-bare-raise) The raise statement is not inside an except clause
   242     enable=$enable,C0123          # (unidiomatic-typecheck) Using type() instead of isinstance() for a typecheck.
   242     enable=$enable,C0123          # (unidiomatic-typecheck) Using type() instead of isinstance() for a typecheck.
   243     enable=$enable,E0601          # (used-before-assignment) Using variable 'X' before assignment
   243     enable=$enable,E0601          # (used-before-assignment) Using variable 'X' before assignment
   244     enable=$enable,E1120          # (no-value-for-parameter) No value for argument 'X' in function call
   244     enable=$enable,E1120          # (no-value-for-parameter) No value for argument 'X' in function call
       
   245     enable=$enable,E0701          # (bad-except-order) Bad except clauses order (X is an ancestor class of Y)
   245     # enable=
   246     # enable=
   246 
   247 
   247     options=
   248     options=
   248     options="$options --rcfile=.pylint"
   249     options="$options --rcfile=.pylint"
   249     # options="$options --py3k"   # report errors for Python 3 porting
   250     # options="$options --py3k"   # report errors for Python 3 porting