tests/tools/check_source.sh
changeset 1862 c4ba411f8c89
parent 1861 410a3bcbeb29
child 1863 46d9955e1101
equal deleted inserted replaced
1861:410a3bcbeb29 1862:c4ba411f8c89
   237     enable=$enable,W0107          # (unnecessary-pass) Unnecessary pass statement
   237     enable=$enable,W0107          # (unnecessary-pass) Unnecessary pass statement
   238     enable=$enable,W0406          # (import-self) Module import itself
   238     enable=$enable,W0406          # (import-self) Module import itself
   239     enable=$enable,C0413          # (wrong-import-position) Import "import X" should be placed at the top of the module
   239     enable=$enable,C0413          # (wrong-import-position) Import "import X" should be placed at the top of the module
   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=
   243     # enable=
   243 
   244 
   244     options=
   245     options=
   245     options="$options --rcfile=.pylint"
   246     options="$options --rcfile=.pylint"
   246     # options="$options --py3k"   # report errors for Python 3 porting
   247     # options="$options --py3k"   # report errors for Python 3 porting