diff options
author | Florent Xicluna <florent.xicluna@gmail.com> | 2014-04-05 22:52:14 +0200 |
---|---|---|
committer | Florent Xicluna <florent.xicluna@gmail.com> | 2014-04-05 22:52:14 +0200 |
commit | 530fae3ed83470286a7972835d38d156d9991539 (patch) | |
tree | fadb9aa4755fab65043cc7d328a6faad1ad52794 /testsuite | |
parent | 20d939b22daf8819731748eb1f7149c87e320102 (diff) | |
download | pep8-530fae3ed83470286a7972835d38d156d9991539.tar.gz |
Fix negative offset with E303 before a multi-line docstring; issue #269
Diffstat (limited to 'testsuite')
-rw-r--r-- | testsuite/E30.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/testsuite/E30.py b/testsuite/E30.py index 0208d05..d2d7bf3 100644 --- a/testsuite/E30.py +++ b/testsuite/E30.py @@ -79,4 +79,12 @@ def a(): def function(): pass +#: E303:5:1 +#!python + + + +"""This class docstring comes on line 5. +It gives error E303: too many blank lines (3) +""" #: |