mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-17 20:11:25 +07:00
Inspection does not register `CompatibilityVisitor` problems for its opened file language because in such a case `UnsupportedFeatures` will annotate them. Also `registerOnFirstMatchingVersion` methods were removed because they could lead to duplication even if languages to register were different.
8 lines
154 B
Python
8 lines
154 B
Python
def foo(a, **args):
|
|
pass
|
|
|
|
b = {}
|
|
foo(**b, <error descr="Python version 2.7 does not allow keyword arguments after **expression">a<caret>=1</error>)
|
|
|
|
|