(cls)
| 410 | |
| 411 | @functools.lru_cache |
| 412 | def get_ast_mro_trees(cls): |
| 413 | return [get_ast_tree(c) for c in cls.__mro__ if c.__module__ != "builtins"] |
| 414 | |
| 415 | |
| 416 | def get_matching_signature(method, trees): |
no test coverage detected
searching dependent graphs…