summaryrefslogtreecommitdiff
path: root/testsuite/E30.py
diff options
context:
space:
mode:
authorMark Peek <mark@peek.org>2016-07-01 09:03:18 -0700
committerMark Peek <mark@peek.org>2016-07-01 09:03:18 -0700
commit72acd6f9471f8a1c3a79b0e3785f77e84ac6244d (patch)
tree4511103dab6c60e3afbfa92f047113ad6752233a /testsuite/E30.py
parent4438622d0b62df53a1999301d1bdc9fa119ae763 (diff)
downloadpep8-72acd6f9471f8a1c3a79b0e3785f77e84ac6244d.tar.gz
Report E302 for blank lines before an "async def"
Diffstat (limited to 'testsuite/E30.py')
-rw-r--r--testsuite/E30.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/testsuite/E30.py b/testsuite/E30.py
index 1471079..9397541 100644
--- a/testsuite/E30.py
+++ b/testsuite/E30.py
@@ -44,7 +44,13 @@ def a():
def b():
pass
#:
+#: E302:4:1
+def a():
+ pass
+async def b():
+ pass
+#:
#: E303:5:1
print