| 261 | } |
| 262 | |
| 263 | PyObject* DocumentPy::getFileName(PyObject* args) |
| 264 | { |
| 265 | if (!PyArg_ParseTuple(args, "")) { |
| 266 | return nullptr; |
| 267 | } |
| 268 | const char* fn = getDocumentPtr()->getFileName(); |
| 269 | return Py::new_reference_to(Py::String(fn)); |
| 270 | } |
| 271 | |
| 272 | PyObject* DocumentPy::getUniqueObjectName(PyObject* args) |
| 273 | { |
nothing calls this directly
no test coverage detected