diff options
author | Florent Xicluna <florent.xicluna@gmail.com> | 2012-06-02 14:00:19 +0200 |
---|---|---|
committer | Florent Xicluna <florent.xicluna@gmail.com> | 2012-06-02 14:00:19 +0200 |
commit | eee28096ca460dee928d1773a08895dfae379ce7 (patch) | |
tree | 7efa4b4cd1a5c02c4803a9ad238c4e57a8f74b37 /testsuite | |
parent | 0ea3f25da468b0992c9e62f0580408d90c4089ba (diff) | |
download | pep8-eee28096ca460dee928d1773a08895dfae379ce7.tar.gz |
Fix E502 for embedded backslash. Closes #68.
Diffstat (limited to 'testsuite')
-rw-r--r-- | testsuite/E50.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/testsuite/E50.py b/testsuite/E50.py index 1a7a996..4cc4383 100644 --- a/testsuite/E50.py +++ b/testsuite/E50.py @@ -38,3 +38,10 @@ elif bbb or \ ddd = \ ccc + +('\ + ' + ' \ +') +(''' + ''' + ' \ +') |