Remove the node from cache.
(self, nodepath: str)
| 464 | cache[newkey] = node |
| 465 | |
| 466 | def drop_from_cache(self, nodepath: str) -> None: |
| 467 | """Remove the node from cache.""" |
| 468 | # Remove the node from the cache. |
| 469 | self.cache.pop(nodepath, None) |
| 470 | |
| 471 | def drop_node(self, node: Node, check_unregistered: bool = True) -> None: |
| 472 | """Drop the `node`. |
no test coverage detected