(self, other)
| 253 | return self._path.relative_to(other._path) |
| 254 | |
| 255 | def isin(self, other): |
| 256 | if isinstance(other, (str, bytes)): |
| 257 | other = self.__class__(other) |
| 258 | elif self.__class__ != other.__class__: |
| 259 | return False |
| 260 | return self._base_parts == other._base_parts and self._path.isin(other._path) |
| 261 | |
| 262 | |
| 263 | class CloudURLInfo(URLInfo): |
no outgoing calls
no test coverage detected