tests/tools/check_source.sh
changeset 1867 418777c1fbc7
parent 1866 9d1e68d557bf
child 1868 616c3f4bcbcb
equal deleted inserted replaced
1866:9d1e68d557bf 1867:418777c1fbc7
   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=$enable,E0701          # (bad-except-order) Bad except clauses order (X is an ancestor class of Y)
       
   246     enable=$enable,E0611          # (no-name-in-module) No name 'X' in module 'Y'
   246     # enable=
   247     # enable=
   247 
   248 
   248     options=
   249     options=
   249     options="$options --rcfile=.pylint"
   250     options="$options --rcfile=.pylint"
   250     # options="$options --py3k"   # report errors for Python 3 porting
   251     # options="$options --py3k"   # report errors for Python 3 porting