Files
codeql/python/ql/test/3/library-tests/ControlFlow/Exceptions/Handles.ql
2020-03-30 11:59:10 +02: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()