equal
deleted
inserted
replaced
203 # NB: it's important that we return a memgittreemanifestctx |
203 # NB: it's important that we return a memgittreemanifestctx |
204 # because the caller expects a mutable manifest. |
204 # because the caller expects a mutable manifest. |
205 return memgittreemanifestctx(self._repo, self._tree) |
205 return memgittreemanifestctx(self._repo, self._tree) |
206 |
206 |
207 def find(self, path): |
207 def find(self, path): |
208 self.read()[path] |
208 return self.read()[path] |
209 |
209 |
210 |
210 |
211 @interfaceutil.implementer(repository.imanifestrevisionwritable) |
211 @interfaceutil.implementer(repository.imanifestrevisionwritable) |
212 class memgittreemanifestctx(object): |
212 class memgittreemanifestctx(object): |
213 def __init__(self, repo, tree): |
213 def __init__(self, repo, tree): |