| 252 | } |
| 253 | |
| 254 | PyObject* DocumentPy::getProgramVersion(PyObject* args) |
| 255 | { |
| 256 | if (!PyArg_ParseTuple(args, "")) { |
| 257 | return nullptr; |
| 258 | } |
| 259 | const char* version = getDocumentPtr()->getProgramVersion(); |
| 260 | return Py::new_reference_to(Py::String(version)); |
| 261 | } |
| 262 | |
| 263 | PyObject* DocumentPy::getFileName(PyObject* args) |
| 264 | { |
nothing calls this directly
no test coverage detected