(self, path)
| 1144 | self._links[path] = target |
| 1145 | |
| 1146 | def add_known_dir(self, path): |
| 1147 | p = path.rstrip("/") |
| 1148 | while p: |
| 1149 | self._dirs.add(p) |
| 1150 | p = p.rpartition("/")[0] |
| 1151 | |
| 1152 | def __missing__(self, key): |
| 1153 | try: |
no test coverage detected