mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
13 lines
348 B
HTML
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> |