| 192 | } |
| 193 | |
| 194 | void |
| 195 | PythonModule::add_python_doc (const gsi::ClassBase & /*cls*/, const MethodTable *mt, int mid, const std::string &doc) |
| 196 | { |
| 197 | for (MethodTableEntry::method_iterator m = mt->begin (mid); m != mt->end (mid); ++m) { |
| 198 | add_python_doc (*m, doc); |
| 199 | } |
| 200 | } |
| 201 | |
| 202 | void |
| 203 | PythonModule::add_python_doc (const gsi::MethodBase *m, const std::string &doc) |
no test coverage detected