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