Check if node is private to class definition.
(node_name: str)
| 9616 | |
| 9617 | |
| 9618 | def is_private(node_name: str) -> bool: |
| 9619 | """Check if node is private to class definition.""" |
| 9620 | return node_name.startswith("__") and not node_name.endswith("__") |
| 9621 | |
| 9622 | |
| 9623 | def is_string_literal(typ: Type) -> bool: |
no test coverage detected
searching dependent graphs…