summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorent Xicluna <florent.xicluna@gmail.com>2012-12-26 01:40:26 +0100
committerFlorent Xicluna <florent.xicluna@gmail.com>2012-12-26 01:40:26 +0100
commit8e4593319677c345b0dd8c415c39717c510d8878 (patch)
tree14fab7664cf75e9ffb508655def9c7e9f3fb0c08
parent02f62ab99c058740382e654ffdad8949e4133434 (diff)
downloadpep8-8e4593319677c345b0dd8c415c39717c510d8878.tar.gz
Doc: add E703 to the list of error codes
-rw-r--r--docs/intro.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/docs/intro.rst b/docs/intro.rst
index 0dae02c..bb9f980 100644
--- a/docs/intro.rst
+++ b/docs/intro.rst
@@ -293,6 +293,8 @@ This is the current list of error and warning codes:
+----------+----------------------------------------------------------------------+
| E702 | multiple statements on one line (semicolon) |
+----------+----------------------------------------------------------------------+
+| E703 | statement ends with a semicolon |
++----------+----------------------------------------------------------------------+
| E711 | comparison to None should be 'if cond is None:' |
+----------+----------------------------------------------------------------------+
| E712 | comparison to True should be 'if cond is True:' or 'if cond:' |