Files
openide/python/pluginResources/inspectionDescriptions/PyShadowingBuiltinsInspection.html
Louis Vignier 1869ec9da6 [codeInspection] Fix python inspection descriptions
GitOrigin-RevId: 56876a5dd073a06c3fcc92f63ed1f5674830bc25
2023-04-28 13:13:25 +00:00

13 lines
348 B
HTML

<html>
<body>
<p>Reports shadowing built-in names, such as <code>len</code> or <code>list</code>.</p>
<p><b>Example:</b></p>
<pre><code>
def len(a, b, c):
d = a + b + c
return d
</code></pre>
<p>In this code fragment, the <code>len</code> built-in name is used. The IDE offers to
apply the Rename refactoring as a fix.</p>
</body>
</html>