diff options
author | Florent Xicluna <florent.xicluna@gmail.com> | 2014-04-26 22:37:04 +0200 |
---|---|---|
committer | Florent Xicluna <florent.xicluna@gmail.com> | 2014-04-26 22:37:04 +0200 |
commit | 7b9449d525bcc2c5df4699616d8b75de76a586d4 (patch) | |
tree | 2c1ba89119efd3a98a5a9e829fccdc0f8196fe07 /docs/intro.rst | |
parent | a176b77c22ef0c0263ca4f956b9b7c91ea659885 (diff) | |
download | pep8-7b9449d525bcc2c5df4699616d8b75de76a586d4.tar.gz |
Replace codes E111/2/3 with E114/5/6 for indentation of comments; issue #274
Diffstat (limited to 'docs/intro.rst')
-rw-r--r-- | docs/intro.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/intro.rst b/docs/intro.rst index 018521d..06b44f0 100644 --- a/docs/intro.rst +++ b/docs/intro.rst @@ -193,6 +193,12 @@ This is the current list of error and warning codes: +----------+----------------------------------------------------------------------+ | E113 | unexpected indentation | +----------+----------------------------------------------------------------------+ +| E114 | indentation is not a multiple of four (comment) | ++----------+----------------------------------------------------------------------+ +| E115 | expected an indented block (comment) | ++----------+----------------------------------------------------------------------+ +| E116 | unexpected indentation (comment) | ++----------+----------------------------------------------------------------------+ +----------+----------------------------------------------------------------------+ | E121 (^) | continuation line under-indented for hanging indent | +----------+----------------------------------------------------------------------+ |