summaryrefslogtreecommitdiff
path: root/testsuite
diff options
context:
space:
mode:
authorIan Lee <IanLee1521@gmail.com>2015-02-08 15:00:18 -0800
committerIan Lee <IanLee1521@gmail.com>2015-02-08 15:00:18 -0800
commitbcbd486eb4c698bc4008f3b38fae0370dce62748 (patch)
tree5266bf10f770a5f732a98d7acc3a0f871e73080f /testsuite
parent1f4227b3735333d7a2fdb197eb049850961e3977 (diff)
parent7f2a185aba1a0e5ab796b66230c67af2ff2be380 (diff)
downloadpep8-bcbd486eb4c698bc4008f3b38fae0370dce62748.tar.gz
Merge pull request #305 from yole/break-around-binary-operator
Thanks for the patch!
Diffstat (limited to 'testsuite')
-rw-r--r--testsuite/E12.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/testsuite/E12.py b/testsuite/E12.py
index 6ebd44e..a995c95 100644
--- a/testsuite/E12.py
+++ b/testsuite/E12.py
@@ -323,14 +323,14 @@ if line_removed:
rv.update(d=('a', 'b', 'c'),
e=42)
#
-#: E127
+#: E127 W503
rv.update(d=('a' + 'b', 'c'),
e=42, f=42
+ 42)
-#: E127
+#: E127 W503
input1 = {'a': {'calc': 1 + 2}, 'b': 1
+ 42}
-#: E128
+#: E128 W503
rv.update(d=('a' + 'b', 'c'),
e=42, f=(42
+ 42))