Commit db64e492 authored by scoder's avatar scoder Committed by GitHub

Merge pull request #2582 from gabrieldemarmiesse/pep8_stuff

Added the pep8 rule: W291 trailing whitespaces.
parents 3fa75854 c8c791ee
...@@ -30,11 +30,11 @@ class ShouldBeFromDirective(object): ...@@ -30,11 +30,11 @@ class ShouldBeFromDirective(object):
% (self.options_name, self.directive_name)) % (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. Cython/docs/src/reference/compilation.rst.
See http://www.sphinx-doc.org/en/master/ext/autodoc.html#directive-autoattribute 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 #: Descriptions of those members should start with a #:
Donc forget to keep the docs in sync by removing and adding Donc forget to keep the docs in sync by removing and adding
the members in both this file and the .rst file. the members in both this file and the .rst file.
......
...@@ -13,6 +13,6 @@ commands = ...@@ -13,6 +13,6 @@ commands =
[pycodestyle] [pycodestyle]
ignore = W, E ignore = W, E
select = E711, E714, E501 select = E711, E714, E501, W291
max-line-length = 150 max-line-length = 150
format = pylint format = pylint
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment