diff options
author | Ian Cordasco <sigmavirus24@users.noreply.github.com> | 2015-07-04 08:28:32 -0500 |
---|---|---|
committer | Ian Cordasco <sigmavirus24@users.noreply.github.com> | 2015-07-04 08:28:32 -0500 |
commit | d06b015ed97aa54190c0f791393b6ddf39f3dea3 (patch) | |
tree | 1c57ac1e2d9dfa67eaadc1d14009a6501f4e2ce9 | |
parent | 435d1cbf995a659a82d1d4b42d25e3459556ef21 (diff) | |
download | pep8-d06b015ed97aa54190c0f791393b6ddf39f3dea3.tar.gz |
Add W503 to the error code table in the docs
Closes #414
-rw-r--r-- | docs/intro.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/intro.rst b/docs/intro.rst index 006187b..141463c 100644 --- a/docs/intro.rst +++ b/docs/intro.rst @@ -392,6 +392,11 @@ This is the current list of error and warning codes: | W391 | blank line at end of file | +----------+----------------------------------------------------------------------+ +----------+----------------------------------------------------------------------+ +| **W5** | *Line break warning* | ++----------+----------------------------------------------------------------------+ +| W503 | line break occurred before a binary operator | ++----------+----------------------------------------------------------------------+ ++----------+----------------------------------------------------------------------+ | **W6** | *Deprecation warning* | +----------+----------------------------------------------------------------------+ | W601 | .has_key() is deprecated, use 'in' | |