mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-28 21:30:23 +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.
10 lines
146 B
Python
10 lines
146 B
Python
|
|
def foo(**args):
|
|
pass
|
|
|
|
a = {}
|
|
b = {}
|
|
foo(**a, <error descr="Python version 2.7 does not allow duplicate **expressions">**<caret>b</error>)
|
|
|
|
|