summaryrefslogtreecommitdiff
path: root/docs/intro.rst
diff options
context:
space:
mode:
authorFlorent Xicluna <florent.xicluna@gmail.com>2014-03-26 00:10:13 +0100
committerFlorent Xicluna <florent.xicluna@gmail.com>2014-03-26 00:10:13 +0100
commit592e49867191ec85fa0ca2e691fb0801f03fe2f5 (patch)
tree5b1160cc14023fa198f968f6bab83d468178f83f /docs/intro.rst
parente9218880caa903765864a27fd024a690fe42a31d (diff)
downloadpep8-592e49867191ec85fa0ca2e691fb0801f03fe2f5.tar.gz
Review messages for E713 and E714
Diffstat (limited to 'docs/intro.rst')
-rw-r--r--docs/intro.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/intro.rst b/docs/intro.rst
index 0f1c077..018521d 100644
--- a/docs/intro.rst
+++ b/docs/intro.rst
@@ -308,9 +308,9 @@ This is the current list of error and warning codes:
+----------+----------------------------------------------------------------------+
| E712 (^) | comparison to True should be 'if cond is True:' or 'if cond:' |
+----------+----------------------------------------------------------------------+
-| E713 | evaluating membership should be 'elem not in collection' |
+| E713 | test for membership should be 'not in' |
+----------+----------------------------------------------------------------------+
-| E714 | testing unequal identities should be 'x is not y' |
+| E714 | test for object identity should be 'is not' |
+----------+----------------------------------------------------------------------+
| E721 | do not compare types, use 'isinstance()' |
+----------+----------------------------------------------------------------------+