Files
codeql/python/ql/test/3/library-tests/ControlFlow/Exceptions/Handles.ql
2020-03-03 16:53:56 -08:00

6 lines
167 B
Plaintext

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