We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 83a5688 commit 4178c7eCopy full SHA for 4178c7e
2 files changed
testsuite/E12.py
@@ -347,11 +347,17 @@ def example_issue254():
347
),
348
dict(name=token.undefined)
349
)]
350
-#: E125
+#: E125:2:5 E125:8:5
351
if ("""
352
"""):
353
pass
354
-#: E122 E122 E122
+
355
+for foo in """
356
+ abc
357
+ 123
358
+ """.strip().split():
359
+ print(foo)
360
+#: E122:6:5 E122:7:5 E122:8:1
361
print dedent(
362
'''
363
mkdir -p ./{build}/
testsuite/E22.py
@@ -13,6 +13,10 @@
13
x = f(x) + 1
14
y = long_variable + 2
15
z = x[0] + 3
16
+#: E221:3:14
17
+text = """
18
+ bar
19
+ foo %s""" % rofl
20
#: Okay
21
x = 1
22
y = 2
0 commit comments