| 179 | Py_Return; |
| 180 | } |
| 181 | PY_CATCH |
| 182 | } |
| 183 | |
| 184 | PyObject* DocumentPy::canWriteRecoverySnapshot(PyObject* args) |
| 185 | { |
| 186 | if (!PyArg_ParseTuple(args, "")) { |
| 187 | return nullptr; |
| 188 | } |
| 189 | |
| 190 | return Py::new_reference_to(Py::Boolean(getDocumentPtr()->canWriteRecoverySnapshot())); |
| 191 | } |
| 192 | |
| 193 | PyObject* DocumentPy::load(PyObject* args) |
| 194 | { |
nothing calls this directly
no test coverage detected