diff options
author | Florent Xicluna <florent.xicluna@gmail.com> | 2014-03-27 12:00:03 +0100 |
---|---|---|
committer | Florent Xicluna <florent.xicluna@gmail.com> | 2014-03-27 12:00:03 +0100 |
commit | 63dc46e93ac8dc32af437878f16dc7f524368917 (patch) | |
tree | a6dfae9377ac4ed7675e5c66b88b76ffddab5628 /testsuite/E12.py | |
parent | bbf35c8c2fb0d668089dfe7aba500c94510d353f (diff) | |
download | pep8-63dc46e93ac8dc32af437878f16dc7f524368917.tar.gz |
Fix a crash with E125 on multi-line strings; closes #263
Diffstat (limited to 'testsuite/E12.py')
-rw-r--r-- | testsuite/E12.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/testsuite/E12.py b/testsuite/E12.py index ac42886..088c6f3 100644 --- a/testsuite/E12.py +++ b/testsuite/E12.py @@ -347,4 +347,8 @@ if True: ), dict(name=token.undefined) )] +#: E125 +if (""" + """): + pass #: |