| 1164 | } |
| 1165 | |
| 1166 | PyObject* ApplicationPy::sCheckLinkDepth(PyObject* /*self*/, PyObject* args) |
| 1167 | { |
| 1168 | short depth = 0; |
| 1169 | if (!PyArg_ParseTuple(args, "h", &depth)) { |
| 1170 | return nullptr; |
| 1171 | } |
| 1172 | |
| 1173 | PY_TRY |
| 1174 | { |
| 1175 | return Py::new_reference_to( |
| 1176 | Py::Long(GetApplication().checkLinkDepth(depth, MessageOption::Throw))); |
| 1177 | } |
| 1178 | PY_CATCH; |
| 1179 | } |
| 1180 |
nothing calls this directly
no test coverage detected