# HG changeset patch
# User Andrey Skvortsov <andrej.skvortzov@gmail.com>
# Date 1539333315 -10800
# Node ID 2e5acbded4a106b5114a388b38862eb0b27e5c1f
# Parent  9900a8df922f55b33c95b1711d65b9e983f27500
python3 support: pylint, W1622          # (next-method-called) Called a next() method on an object

diff -r 9900a8df922f -r 2e5acbded4a1 svgui/pyjs/lib/pyjslib.py
--- a/svgui/pyjs/lib/pyjslib.py	Fri Oct 12 11:14:34 2018 +0300
+++ b/svgui/pyjs/lib/pyjslib.py	Fri Oct 12 11:35:15 2018 +0300
@@ -12,7 +12,7 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-# pylint: disable=too-many-function-args,undefined-variable,no-absolute-import,assign-to-new-keyword,nonzero-method
+# pylint: disable=too-many-function-args,undefined-variable,no-absolute-import,assign-to-new-keyword,nonzero-method,next-method-called
 
 # iteration from Bob Ippolito's Iteration in JavaScript
 
diff -r 9900a8df922f -r 2e5acbded4a1 tests/tools/check_source.sh
--- a/tests/tools/check_source.sh	Fri Oct 12 11:14:34 2018 +0300
+++ b/tests/tools/check_source.sh	Fri Oct 12 11:35:15 2018 +0300
@@ -372,6 +372,7 @@
     enable=$enable,W1611          # (standarderror-builtin) StandardError built-in referenced
     enable=$enable,W1624          # (indexing-exception) Indexing exceptions will not work on Python 3
     enable=$enable,W1625          # (raising-string) Raising a string exception
+    enable=$enable,W1622          # (next-method-called) Called a next() method on an object
     # enable=
 
     options=