Return `True` if `name` makes the named node visible.
(name: str)
| 207 | |
| 208 | |
| 209 | def isvisiblename(name: str) -> bool: |
| 210 | """Return `True` if `name` makes the named node visible.""" |
| 211 | return _hidden_name_re.match(name) is None |
| 212 | |
| 213 | |
| 214 | def isvisiblepath(path: str) -> bool: |
no outgoing calls
no test coverage detected