summaryrefslogtreecommitdiff
path: root/testsuite/E12not.py
diff options
context:
space:
mode:
authorFlorent Xicluna <florent.xicluna@gmail.com>2014-03-22 23:59:50 +0100
committerFlorent Xicluna <florent.xicluna@gmail.com>2014-03-22 23:59:50 +0100
commit3dad6b5a27f66187a28d6bfccb172a2b04948dc6 (patch)
tree875b1812e2cb7eb64f6fb536024bb60398dbf9f8 /testsuite/E12not.py
parentb347754dec925512080453a4f490729c581a4a53 (diff)
downloadpep8-3dad6b5a27f66187a28d6bfccb172a2b04948dc6.tar.gz
Fix regression with multiple brackets; issue #214
Diffstat (limited to 'testsuite/E12not.py')
-rw-r--r--testsuite/E12not.py11
1 files changed, 10 insertions, 1 deletions
diff --git a/testsuite/E12not.py b/testsuite/E12not.py
index c50f27f..655dd6b 100644
--- a/testsuite/E12not.py
+++ b/testsuite/E12not.py
@@ -128,7 +128,7 @@ part = [-1, (2, 3,
fnct(1, 2, 3,
4, 5, 6)
-fnct(1, 2, 3
+fnct(1, 2, 3,
4, 5, 6,
7, 8, 9,
10, 11)
@@ -578,4 +578,13 @@ dica = {
('abc'
'def') == (
'abc')
+
+# issue 214
+bar(
+ 1).zap(
+ 2)
+
+bar(
+ 1).zap(
+ 2)
#