Files
codeql/python/ql/test/2/library-tests/ControlFlow/Exceptions/Handles.ql
2020-03-09 12:52:33 -07:00

6 lines
156 B
Plaintext

import python
from ExceptFlowNode ex, Value val
where ex.handledException(val, _, _)
select ex.getLocation().getStartLine(), ex.toString(), val.toString()