Files
openide/python/testData/inspections/PyUnboundLocalVariableInspection/UnboundConditionalImport.py
T

5 lines
140 B
Python

def f(c):
if c:
import sys
return <warning descr="Local variable 'sys' might be referenced before assignment">sys</warning>