tests/tools/check_source.sh
changeset 1863 46d9955e1101
parent 1862 c4ba411f8c89
child 1865 0bd5b3099144
equal deleted inserted replaced
1862:c4ba411f8c89 1863:46d9955e1101
   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=$enable,C0123          # (unidiomatic-typecheck) Using type() instead of isinstance() for a typecheck.
       
   243     enable=$enable,E0601          # (used-before-assignment)
   243     # enable=
   244     # enable=
   244 
   245 
   245     options=
   246     options=
   246     options="$options --rcfile=.pylint"
   247     options="$options --rcfile=.pylint"
   247     # options="$options --py3k"   # report errors for Python 3 porting
   248     # options="$options --py3k"   # report errors for Python 3 porting