(self)
| 1396 | _OtherMemberInfo(short_name, full_name, obj, doc)) |
| 1397 | |
| 1398 | def get_metadata_html(self): |
| 1399 | meta_data = _Metadata(self.full_name) |
| 1400 | |
| 1401 | # Objects with their own pages are not added to the matadata list for the |
| 1402 | # module, the module only has a link to the object page. No docs. |
| 1403 | for item in self.other_members: |
| 1404 | meta_data.append(item) |
| 1405 | |
| 1406 | return meta_data.build_html() |
| 1407 | |
| 1408 | def collect_docs_for_module(self, parser_config): |
| 1409 | """Collect information necessary specifically for a module's doc page. |
nothing calls this directly
no test coverage detected