Files
codeql/python/ql/test/3/library-tests/ControlFlow/Exceptions/Handles.ql
2019-02-08 14:39:27 +00:00

6 lines
157 B
Plaintext

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