Back to Intellij Community

CythonUsageBeforeDeclarationInspection

python/pluginResources/inspectionDescriptions/CythonUsageBeforeDeclarationInspection.html

2025.3-rc-2180 B
Original Source

Reports Cython variables being referenced before declaration.

Example:

cdef int c_x

print(c_x, c_y) # Variable 'c_y' is used before its declaration

cdef int c_y = 0