(self, key: bytes)
| 729 | return isinstance(other, ReadOnlyDatabase) and self._wrapped == other._wrapped |
| 730 | |
| 731 | def fetch(self, key: bytes) -> Iterable[bytes]: |
| 732 | yield from self._wrapped.fetch(key) |
| 733 | |
| 734 | def save(self, key: bytes, value: bytes) -> None: |
| 735 | pass |