(self)
| 633 | |
| 634 | @property |
| 635 | def short_group_suffix(self) -> str: |
| 636 | return "_" + exported_name(self.group_name.split(".")[-1]) if self.group_name else "" |
| 637 | |
| 638 | def generate_c_for_modules(self) -> list[tuple[str, str]]: |
| 639 | file_contents = [] |
nothing calls this directly
no test coverage detected