Files
codeql/python/ql/test/2/library-tests/ControlFlow/Exceptions/Handles.ql
2019-02-08 14:49:04 +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()