Return `True` if `path` makes the named node visible.
(path: str)
| 212 | |
| 213 | |
| 214 | def isvisiblepath(path: str) -> bool: |
| 215 | """Return `True` if `path` makes the named node visible.""" |
| 216 | return _hidden_path_re.search(path) is None |
| 217 | |
| 218 | |
| 219 | def _test() -> None: |