svgui/pyjs/lib/pyjslib.py
2018-10-12 Andrey Skvortsov python3 support: pylint, W1653 # (next-method-defined) next method defined
2018-10-12 Andrey Skvortsov python3 support: pylint, W1622 # (next-method-called) Called a next() method on an object
2018-10-10 Andrey Skvortsov python3 support: pylint, W1629 # (nonzero-method) __nonzero__ method defined
2018-10-09 Andrey Skvortsov Fix pep8 warning: W605 invalid escape sequence ?x?
2018-10-01 Andrey Skvortsov cleanup: pylint, W0111 # (assign-to-new-keyword) Name async will become a keyword in Python 3.7
2017-10-25 Andrey Skvortsov fix pylint py3k conversion warning: "(no-absolute-import) import missing `from __future__ import absolute_import`"
2017-10-17 Andrey Skvortsov fix pylint warning '(no-init) Class has no __init__ method'
2017-10-16 Andrey Skvortsov fix pylint error "(undefined-variable) Undefined variable 'X'"
2017-10-12 Andrey Skvortsov fix pylint error '(too-many-function-args) Too many positional arguments for function call'
2017-10-11 Andrey Skvortsov fix pylint warning "(no-value-for-parameter) No value for argument 'X' in function call"
2017-10-10 Andrey Skvortsov fix pylint warning '(wrong-import-position) Import "import X" should be placed at the top of the module'
2017-10-10 Andrey Skvortsov fix pylint warning 'C0112(empty-docstring) Empty function docstring'
2017-10-09 Andrey Skvortsov fix pylint warning '(old-style-class) Old-style class defined.'
2017-10-06 Andrey Skvortsov fix pylint warning '(unused-import), Unused import connectors'
2017-10-05 Andrey Skvortsov explicitly mark unused variables found by pylint with _ or dummy
2017-10-02 Andrey Skvortsov fix pylint warning '(global-variable-not-assigned) Using global for 'X' but no assignment is done'
2017-09-28 Andrey Skvortsov fix wrong-import-order. first standard modules are imported, then others
2017-09-22 Andrey Skvortsov fix unnecessary parens after keyword
2017-08-21 Andrey Skvortsov clean-up: fix PEP8 E402 module level import not at top of file
2017-08-19 Andrey Skvortsov clean-up: fix PEP8 E713 test for membership should be 'not in'
2017-08-17 Andrey Skvortsov clean-up: fix PEP8 W601 .has_key() is deprecated, use 'in'
2017-08-16 Andrey Skvortsov clean-up: fix PEP8 E703 statement ends with a semicolon
2017-08-16 Andrey Skvortsov clean-up: fix PEP8 E305 expected 2 blank lines after class or function definition
2017-08-15 Andrey Skvortsov clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
2017-08-15 Andrey Skvortsov clean-up: fix PEP8 E231 missing whitespace after ':' or ','
2017-08-14 Andrey Skvortsov clean-up: fix PEP8 E302 expected 2 blank lines, found 1
2017-08-14 Andrey Skvortsov clean-up for PEP8: fix W291 trailing whitespace
2012-05-12 Edouard Tisserant refactoring - library support is not anymore attached to configtree nodes, but handles by project controller