summaryrefslogtreecommitdiff
path: root/testsuite/E10.py
diff options
context:
space:
mode:
authorFlorent Xicluna <florent.xicluna@gmail.com>2014-03-24 23:26:01 +0100
committerFlorent Xicluna <florent.xicluna@gmail.com>2014-03-24 23:26:01 +0100
commitca37ce87c8446b13abf18d0a9079479914834ee1 (patch)
treef011557603f93ddfee20edc10b85ec17fe429bb5 /testsuite/E10.py
parentbc112091ee1f171496cb1d5c181547544970f352 (diff)
downloadpep8-ca37ce87c8446b13abf18d0a9079479914834ee1.tar.gz
A false positivee E126 when indenting with tabs; closes #204
Diffstat (limited to 'testsuite/E10.py')
-rw-r--r--testsuite/E10.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/testsuite/E10.py b/testsuite/E10.py
index 2b3825e..cd142e3 100644
--- a/testsuite/E10.py
+++ b/testsuite/E10.py
@@ -25,4 +25,17 @@ class TestP4Poller(unittest.TestCase):
def tearDown(self):
pass
+
+#
+#: E101 W191 W191
+if True:
+ foo(1,
+ 2)
+#: E101 E101 W191 W191
+def test_keys(self):
+ """areas.json - All regions are accounted for."""
+ expected = set([
+ u'Norrbotten',
+ u'V\xe4sterbotten',
+ ])
#: