(self, attr)
| 469 | return self.__make_new(ast.Subscript(self.__get_ast(), other), extra_names) |
| 470 | |
| 471 | def __getattr__(self, attr): |
| 472 | return self.__make_new(ast.Attribute(self.__get_ast(), attr)) |
| 473 | |
| 474 | def __call__(self, *args, **kwargs): |
| 475 | extra_names = {} |
nothing calls this directly
no test coverage detected