summaryrefslogtreecommitdiff
path: root/testsuite
diff options
context:
space:
mode:
authorIan Stapleton Cordasco <graffatcolmingov@gmail.com>2019-07-11 15:51:45 -0500
committerGitHub <noreply@github.com>2019-07-11 15:51:45 -0500
commit9726e10004e5615c432f126530ee0540b9903f6e (patch)
treeacd72967182f427f6612198e764d27e99a568fa5 /testsuite
parent3b258c375c6392b1475a487c0961cf7dbe03f838 (diff)
parent4fea946aa5b66d4b39ebe52bd91e84b0ed5b5d54 (diff)
downloadpep8-9726e10004e5615c432f126530ee0540b9903f6e.tar.gz
Merge pull request #875 from asottile/ellipsis_not_binary_operator
Ellipsis is not a binary operator
Diffstat (limited to 'testsuite')
-rw-r--r--testsuite/python3.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/testsuite/python3.py b/testsuite/python3.py
index be7c58f..709695a 100644
--- a/testsuite/python3.py
+++ b/testsuite/python3.py
@@ -37,3 +37,10 @@ class Class:
def m(self):
xs: List[int] = []
+
+
+# Used to trigger W504
+def f(
+ x: str = ...
+):
+ ...