diff options
author | Florent Xicluna <florent.xicluna@gmail.com> | 2014-05-29 19:57:51 +0200 |
---|---|---|
committer | Florent Xicluna <florent.xicluna@gmail.com> | 2014-05-29 19:57:51 +0200 |
commit | 4c5bf00cb613be617c7f48d3b2b82a1c7b895ac1 (patch) | |
tree | 6201d93d292df1e0c2ead7aca926390af60edb2d /docs/intro.rst | |
parent | 999e3357c73a48fea6df8a772435af696b3f01c0 (diff) | |
download | pep8-4c5bf00cb613be617c7f48d3b2b82a1c7b895ac1.tar.gz |
Do not report E704 in the default configuration; issue #277
Diffstat (limited to 'docs/intro.rst')
-rw-r--r-- | docs/intro.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/intro.rst b/docs/intro.rst index 88f0000..5e3af1f 100644 --- a/docs/intro.rst +++ b/docs/intro.rst @@ -313,7 +313,7 @@ This is the current list of error and warning codes: +----------+----------------------------------------------------------------------+ | E703 | statement ends with a semicolon | +----------+----------------------------------------------------------------------+ -| E704 | multiple statements on one line (def) | +| E704 (*) | multiple statements on one line (def) | +----------+----------------------------------------------------------------------+ | E711 (^) | comparison to None should be 'if cond is None:' | +----------+----------------------------------------------------------------------+ @@ -367,7 +367,7 @@ This is the current list of error and warning codes: **(*)** In the default configuration, the checks **E123**, **E133**, **E226**, -**E241** and **E242** are ignored because they are not rules unanimously +**E241**, **E242** and **E704** are ignored because they are not rules unanimously accepted, and `PEP 8`_ does not enforce them. The check **E133** is mutually exclusive with check **E123**. Use switch ``--hang-closing`` to report **E133** instead of **E123**. |