| 89 | } |
| 90 | |
| 91 | py::UniqueObj VocabObject::repr() const |
| 92 | { |
| 93 | py::UniqueObj args{ py::buildPyTuple((PyObject*)this) }; |
| 94 | py::UniqueObj l{ PyObject_CallObject((PyObject*)&PyList_Type, args.get()) }; |
| 95 | return py::UniqueObj{ PyObject_Repr(l.get()) }; |
| 96 | } |
| 97 | |
| 98 | class RawDocWrapper |
| 99 | { |
nothing calls this directly
no test coverage detected