summaryrefslogtreecommitdiff
path: root/testsuite/E12not.py
diff options
context:
space:
mode:
authorFlorent Xicluna <florent.xicluna@gmail.com>2013-02-04 15:49:49 +0100
committerFlorent Xicluna <florent.xicluna@gmail.com>2013-02-04 15:49:49 +0100
commit30661841467f40d5c66f6413f7b4cc65917ba8d7 (patch)
tree2a48afd3e081b98773eb9832a27034a65888d2ee /testsuite/E12not.py
parentb0e8e24d1513f77d353fc7a5e044c550e4e8a5a4 (diff)
downloadpep8-30661841467f40d5c66f6413f7b4cc65917ba8d7.tar.gz
Accept visual indentation without parenthesis after the if statement. Issue #151
Diffstat (limited to 'testsuite/E12not.py')
-rw-r--r--testsuite/E12not.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/testsuite/E12not.py b/testsuite/E12not.py
index 8802872..9509379 100644
--- a/testsuite/E12not.py
+++ b/testsuite/E12not.py
@@ -541,4 +541,8 @@ d = { # comment
12, # this is a multi-line inline
# comment
]
+# issue 151
+if a > b and \
+ c > d:
+ moo_like_a_cow()
#