(name: str)
| 76 | |
| 77 | |
| 78 | def is_sunder(name: str) -> bool: |
| 79 | return not is_dunder(name) and name.startswith("_") and name.endswith("_") and name != "_" |
| 80 | |
| 81 | |
| 82 | def split_module_names(mod_name: str) -> list[str]: |
no test coverage detected
searching dependent graphs…