| 780 | } |
| 781 | |
| 782 | py::UniqueCObj<CorpusIterObject> CorpusObject::iter() |
| 783 | { |
| 784 | auto ret = py::makeNewObject<CorpusIterObject>(); |
| 785 | if (!ret) throw py::ExcPropagation{}; |
| 786 | ret->corpus = py::UniqueCObj<CorpusObject>{ this }; |
| 787 | Py_INCREF(this); |
| 788 | return ret; |
| 789 | } |
| 790 | |
| 791 | const tomoto::Dictionary& CorpusObject::getVocabDict() const |
| 792 | { |
nothing calls this directly
no outgoing calls
no test coverage detected