(self, group_id, default=None)
| 818 | |
| 819 | # get the group name |
| 820 | def group_name(self, group_id, default=None): |
| 821 | if self._cs._diet: |
| 822 | # Diet engine cannot provide group name |
| 823 | raise CsError(CS_ERR_DIET) |
| 824 | |
| 825 | return _ascii_name_or_default(_cs.cs_group_name(self._cs.csh, group_id), default) |
| 826 | |
| 827 | |
| 828 | # verify if this insn belong to group with id as @group_id |
nothing calls this directly
no test coverage detected