| 699 | } |
| 700 | |
| 701 | PyObject *DocumentPy::isAutoCreated(PyObject *args) |
| 702 | { |
| 703 | if (!PyArg_ParseTuple(args, "")) { |
| 704 | return nullptr; |
| 705 | } |
| 706 | bool ok = getDocumentPtr()->isAutoCreated(); |
| 707 | return Py::new_reference_to(Py::Boolean(ok)); |
| 708 | } |
| 709 | |
| 710 | PyObject* DocumentPy::recompute(PyObject* args) |
| 711 | { |
nothing calls this directly
no test coverage detected