2017-10-11 Andrey Skvortsov fix problems with unconnected input of InOut function variables and
2017-10-10 Andrey Skvortsov fix error for functions with VAR_IN_OUT
2017-10-10 Andrey Skvortsov fix pylint warning '(unidiomatic-typecheck) Using type() instead of isinstance() for a typecheck'
2017-10-10 Andrey Skvortsov fix pylint warning '(misplaced-bare-raise) The raise statement is not inside an except clause'
2017-10-10 Andrey Skvortsov fix format string argument error found by pylint '(too-many-format-args) Too many arguments for format string'
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 '(import-self) Module import itself'
2017-10-10 Andrey Skvortsov remove old code useless code found by pylint "(unnecessary-pass) Unnecessary pass statement"
2017-10-10 Andrey Skvortsov fix error found by pylint 'W0104(pointless-statement) Statement seems to have no effect'
2017-10-10 Andrey Skvortsov fix pylint warning "(undefined-loop-variable) Using possibly undefined loop variable 'X'"
2017-10-10 Andrey Skvortsov fix pylint warning 'C0112(empty-docstring) Empty function docstring'
2017-10-09 Andrey Skvortsov fix pylint warning "(relative-import) Relative import 'Y', should be 'X.Y'"
2017-10-09 Andrey Skvortsov fix pylint warning '(dangerous-default-value) Dangerous default value {} as argument'
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 fix typos
2017-10-05 Andrey Skvortsov comment out unused code SFC_Step.RefreshBoundingBox()
2017-10-05 Andrey Skvortsov explicitly mark unused variables found by pylint with _ or dummy
2017-10-03 Andrey Skvortsov remove unused variables found by pylint
2017-10-03 Andrey Skvortsov update .PHONE target in Makefile for mki18n.py
2017-10-03 Andrey Skvortsov make mki18n return 0 on success
2017-10-03 Andrey Skvortsov update list with files for internatialization, app.fil
2017-10-03 Andrey Skvortsov move README content to Makefile
2017-10-02 Andrey Skvortsov fix pylint warning '(global-variable-not-assigned) Using global for 'X' but no assignment is done'
2017-10-02 Andrey Skvortsov fix pylint error '(function-redefined) method already defined'
2017-09-29 Andrey Skvortsov fix pylint warning '(unreachable) Unreachable code'
2017-09-29 Andrey Skvortsov fix pylint warning (bad-indentation) Bad indentation. Found X spaces, expected Y
2017-09-29 Andrey Skvortsov fix pylint warning '(pointless-string-statement) String statement has no effect'
2017-09-29 Andrey Skvortsov fix error __init__ method from base class is not called
2017-09-28 Andrey Skvortsov fix more than one statement on a single line
2017-09-28 Andrey Skvortsov fix ungrouped imports from package X
2017-09-28 Andrey Skvortsov fix unnecessary lambda and enable corresponding pylint check
2017-09-28 Andrey Skvortsov fix wrong-import-order. first standard modules are imported, then others
2017-09-28 Andrey Skvortsov fix (old-style-class) Old-style class defined error for most parts of
2017-09-22 Andrey Skvortsov remove in-tree version of Zeroconf and use upstream from
2017-09-22 Andrey Skvortsov remove reimported modules
2017-09-22 Andrey Skvortsov fix unnecessary parens after keyword
2017-09-22 Andrey Skvortsov enable pylint checker
2017-09-22 Andrey Skvortsov fix usage of python2-only print statement
2017-09-22 Andrey Skvortsov run python tests with non-english locale to catch bugs related to localization
2017-09-21 Andrey Skvortsov make it possible to update XSD schema in project controller after new
2017-09-21 Andrey Skvortsov fix commit "lazy initialization of highlight pens and brushes
2017-09-21 Andrey Skvortsov clean build example project after running test
2017-09-21 Andrey Skvortsov fix problem if DataTypeEditor was imported before localization is
2017-09-16 Andrey Skvortsov add shell script to run all python tests and automatically handle Xvfb
2017-09-16 Andrey Skvortsov add PLCOpenEditor tests
2017-09-16 Andrey Skvortsov run application tests in full screen mode
2017-09-16 Andrey Skvortsov clean sys.argv, because if test is running from pytest
2017-09-16 Andrey Skvortsov rework Beremiz application "testCheckProject" test to allow easier reuse later
2017-09-16 Andrey Skvortsov add application name for PLCOpenEditor
2017-09-15 Andrey Skvortsov rewrite PLCOpenEditor. Add PLCOpenEditorApp class for easier customizations.
2017-09-15 Andrey Skvortsov lazy locale initialization
2017-09-15 Andrey Skvortsov use CustomIntCtrl instead of wx.SpinCtrl because it doesn't support
2017-09-15 Andrey Skvortsov add custom TextCtrl allowed to enter long integer with bounds checking
2017-09-15 Andrey Skvortsov use pytest for testing
2017-09-15 Andrey Skvortsov run separate test on every project instead of one big long test all projects
2017-09-15 Andrey Skvortsov move configuration for test environment into separate file conftest.py
2017-09-15 Andrey Skvortsov lazy initialization of highlight pens and brushes for DebugVariableViewer
2017-09-15 Andrey Skvortsov add '_' function to builtin dictionary at import time
2017-09-15 Andrey Skvortsov remove builtin BMZ_DBG. It's not used.