Files
openide/python/pluginResources/inspectionDescriptions/CythonUsageBeforeDeclarationInspection.html
Semyon Proshev cf78619d36 Update python inspections' descriptions (PY-48274)
GitOrigin-RevId: 4ee6b7ef7e51a697e4d52a06b87cf599c79366a0
2021-04-30 10:35:14 +00:00

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>