summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Lee <IanLee1521@gmail.com>2016-02-16 20:00:26 -0800
committerIan Lee <IanLee1521@gmail.com>2016-02-16 20:00:26 -0800
commit91717019e4a98bf9bb47cd2819035ff14398e773 (patch)
tree0bc4154d473a1abc33026581005be505cd8bed32
parent44e48c1f71b916615466c628fc6bd056df56804e (diff)
downloadpep8-issue-473.tar.gz
Added failing tests verifying #473issue-473
-rw-r--r--testsuite/E30not.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/testsuite/E30not.py b/testsuite/E30not.py
index 0fd8fb0..f693da0 100644
--- a/testsuite/E30not.py
+++ b/testsuite/E30not.py
@@ -132,3 +132,19 @@ def a():
def b():
pass
+#: Okay
+def func(x,
+ y,
+ z):
+ pass
+#: Okay
+def func(
+ x,
+ y, z):
+ pass
+#: Okay
+def func(
+ x,
+ y,
+ z):
+ pass