(self)
| 488 | return self.__make_new(ast.Call(self.__get_ast(), ast_args, ast_kwargs), extra_names) |
| 489 | |
| 490 | def __iter__(self): |
| 491 | yield self.__make_new(ast.Starred(self.__get_ast())) |
| 492 | |
| 493 | def __repr__(self): |
| 494 | if isinstance(self.__ast_node__, str): |
nothing calls this directly
no test coverage detected