mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
19 lines
320 B
HTML
19 lines
320 B
HTML
<html>
|
|
<body>
|
|
<p>Reports local variables referenced before assignment.</p>
|
|
<p><b>Example:</b></p>
|
|
<pre><code>
|
|
x = 0
|
|
if x > 10:
|
|
b = 3
|
|
print(b)
|
|
</code></pre>
|
|
<p>The IDE reports a problem for <code>print(b)</code>. A possible fix is:</p>
|
|
<pre><code>
|
|
x = 0
|
|
if x > 10:
|
|
b = 3
|
|
print(b)
|
|
</code></pre>
|
|
</body>
|
|
</html> |