List of groups that are part of this group + all subgroups :rtype: list[Group]
(self)
| 569 | return constructors[0] |
| 570 | |
| 571 | def all_groups(self): |
| 572 | """ |
| 573 | List of groups that are part of this group + all subgroups |
| 574 | :rtype: list[Group] |
| 575 | """ |
| 576 | ret = [self] |
| 577 | for subgroup in self.subgroups: |
| 578 | ret += subgroup.all_groups() |
| 579 | return ret |
| 580 | |
| 581 | def get_variables(self, line_number=None): |
| 582 | """ |
no outgoing calls
no test coverage detected