(self, test_func)
| 187 | __cells = None |
| 188 | |
| 189 | def __idents_matching(self, test_func): |
| 190 | return tuple(ident for ident in self.get_identifiers() |
| 191 | if test_func(self._table.symbols[ident])) |
| 192 | |
| 193 | def get_parameters(self): |
| 194 | """Return a tuple of parameters to the function. |
no test coverage detected