summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Lee <IanLee1521@gmail.com>2015-01-14 23:45:12 -0800
committerIan Lee <IanLee1521@gmail.com>2015-01-25 23:40:30 -0800
commit48eb9c0e893cc0b05683bd0de8a384ca12a9d6be (patch)
tree4a0fa6a3b833b7c6789eb3b0759704a754e3a8d9
parente57e293db47b79f757a6a88138cac53dfc913f93 (diff)
downloadpep8-issue-366-regression.tar.gz
Add test case per @myint which regressed in the issue-366 branch. #366issue-366-regression
-rw-r--r--testsuite/E30.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/testsuite/E30.py b/testsuite/E30.py
index be41a30..2797d87 100644
--- a/testsuite/E30.py
+++ b/testsuite/E30.py
@@ -96,4 +96,17 @@ def a():
def b(n):
pass
+#: E303:5:5 E303:11:5
+class Foo(object):
+
+
+
+ def a(self):
+ pass
+
+
+
+
+ def b(self):
+ pass
#: