Files
codeql/python/ql/test/library-tests/DefUse/defuse.py
2018-11-19 15:15:54 +00:00

25 lines
173 B
Python

a = 1
b = 2
c = 3
a
b
# c is not used
d # not defined
try:
pass
except E1:
pass
try:
pass
except E2 as ex:
ex
with C1:
pass
with C2 as ctx:
ctx