mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-18 04:21:24 +07:00
13 lines
262 B
HTML
13 lines
262 B
HTML
<html>
|
|
<body>
|
|
<p>Reports Cython variables being referenced before declaration.</p>
|
|
<p><b>Example:</b></p>
|
|
<pre style="font-family: monospace">
|
|
cdef int c_x
|
|
|
|
print(c_x, c_y) # Variable 'c_y' is used before its declaration
|
|
|
|
cdef int c_y = 0
|
|
</pre>
|
|
</body>
|
|
</html> |