Files
openide/python/testData/inspections/PyUnusedLocalFunctionInspection/expected.xml
T
Mikhail Golubev 031ab39ef5 PY-9778 Do not warn about unused inner functions with unknown decorators
I added helper class PyKnownDecoratorUtil that contains list of
well-known decorators from Python's standard library and redefined
several existing methods from PyUtil in terms of this class.
2014-11-24 19:36:07 +03:00

19 lines
506 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<problems>
<problem>
<file>test.py</file>
<line>2</line>
<description>Local function 'bar' is not used</description>
</problem>
<problem>
<file>test.py</file>
<line>13</line>
<description>Local function 'bar1' is not used</description>
</problem>
<problem>
<file>test.py</file>
<line>29</line>
<module>light_idea_test_case</module>
<description>Local function 'func' is not used</description>
</problem>
</problems>