summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorFlorent Xicluna <florent.xicluna@gmail.com>2013-02-24 13:07:53 +0100
committerFlorent Xicluna <florent.xicluna@gmail.com>2013-02-24 13:07:53 +0100
commit72269ddfebfbe7075079b224df30c7c989aa7281 (patch)
tree55f0482f7e891f9420d3c34a65d5a31365a7de06 /docs
parent2a82c7eb2afac5ef340a509b6b72acea13c36fa6 (diff)
downloadpep8-72269ddfebfbe7075079b224df30c7c989aa7281.tar.gz
Report E227 or E228 instead of E225 for whitespace around bitwise, shift or modulo operators; issue #166
Diffstat (limited to 'docs')
-rw-r--r--docs/intro.rst6
1 files changed, 5 insertions, 1 deletions
diff --git a/docs/intro.rst b/docs/intro.rst
index 415212d..a253901 100644
--- a/docs/intro.rst
+++ b/docs/intro.rst
@@ -230,7 +230,11 @@ This is the current list of error and warning codes:
+----------+----------------------------------------------------------------------+
| E225 | missing whitespace around operator |
+----------+----------------------------------------------------------------------+
-| E226 (*) | missing optional whitespace around operator |
+| E226 (*) | missing whitespace around arithmetic operator |
++----------+----------------------------------------------------------------------+
+| E227 | missing whitespace around bitwise or shift operator |
++----------+----------------------------------------------------------------------+
+| E228 | missing whitespace around modulo operator |
+----------+----------------------------------------------------------------------+
+----------+----------------------------------------------------------------------+
| E231 | missing whitespace after ',' |