summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgabrieldemarmiesse <gabrieldemarmiesse@gmail.com>2018-08-26 17:43:24 +0200
committergabrieldemarmiesse <gabrieldemarmiesse@gmail.com>2018-08-26 17:43:24 +0200
commitc8c791ee0605307e9284bd373bf228ca220566f6 (patch)
tree521089af6f7738e7ecc9705176b3618337f3426e
parent3fa758548a51ccb624d123dcfb3b65a54e6139bb (diff)
downloadcython-c8c791ee0605307e9284bd373bf228ca220566f6.tar.gz
Added the pep8 rule: W291 trailing whitespaces.
-rw-r--r--Cython/Compiler/Options.py6
-rw-r--r--tox.ini2
2 files changed, 4 insertions, 4 deletions
diff --git a/Cython/Compiler/Options.py b/Cython/Compiler/Options.py
index b1181dcc1..ffd503ad9 100644
--- a/Cython/Compiler/Options.py
+++ b/Cython/Compiler/Options.py
@@ -30,11 +30,11 @@ class ShouldBeFromDirective(object):
% (self.options_name, self.directive_name))
-"""
-The members of this module are documented using autodata in
+"""
+The members of this module are documented using autodata in
Cython/docs/src/reference/compilation.rst.
See http://www.sphinx-doc.org/en/master/ext/autodoc.html#directive-autoattribute
-for how autodata works.
+for how autodata works.
Descriptions of those members should start with a #:
Donc forget to keep the docs in sync by removing and adding
the members in both this file and the .rst file.
diff --git a/tox.ini b/tox.ini
index ec32cdb05..5f86476f6 100644
--- a/tox.ini
+++ b/tox.ini
@@ -13,6 +13,6 @@ commands =
[pycodestyle]
ignore = W, E
-select = E711, E714, E501
+select = E711, E714, E501, W291
max-line-length = 150
format = pylint