[Python] Suppress new pycodestyle warning

E252 missing whitespace around parameter equals
diff --git a/CHANGES.current b/CHANGES.current
index 72764c6..f15c99e 100644
--- a/CHANGES.current
+++ b/CHANGES.current
@@ -7,6 +7,10 @@
 Version 4.0.0 (in progress)
 ===========================
 
+2018-04-18: olly
+	    [Python] Suppress new pycodestyle warning:
+	    E252 missing whitespace around parameter equals
+
 2018-04-07: goatshriek
             [Ruby] #1213 Fix ruby %alias directive for global C/C++ functions.
 
diff --git a/Examples/Makefile.in b/Examples/Makefile.in
index 81697c8..8218f51 100644
--- a/Examples/Makefile.in
+++ b/Examples/Makefile.in
@@ -335,7 +335,7 @@
 endif
 
 PYCODESTYLE       = @PYCODESTYLE@
-PYCODESTYLE_FLAGS = --ignore=E402,E501,E30,W291,W391
+PYCODESTYLE_FLAGS = --ignore=E252,E30,E402,E501,E731,W291,W391
 
 # ----------------------------------------------------------------
 # Build a C dynamically loadable module
diff --git a/Examples/test-suite/python/Makefile.in b/Examples/test-suite/python/Makefile.in
index 12844e3..e2aad7c 100644
--- a/Examples/test-suite/python/Makefile.in
+++ b/Examples/test-suite/python/Makefile.in
@@ -11,7 +11,7 @@
 LANGUAGE     = python
 PYTHON       = $(PYBIN)
 PYCODESTYLE       = @PYCODESTYLE@
-PYCODESTYLE_FLAGS = --ignore=E30,E402,E501,E731,W291,W391
+PYCODESTYLE_FLAGS = --ignore=E252,E30,E402,E501,E731,W291,W391
 
 #*_runme.py for Python 2.x, *_runme3.py for Python 3.x
 PY2SCRIPTSUFFIX = _runme.py