equal
deleted
inserted
replaced
578 return gitmanifest.gittreemanifestctx(self.gitrepo, t) |
578 return gitmanifest.gittreemanifestctx(self.gitrepo, t) |
579 |
579 |
580 |
580 |
581 class filelog(baselog, repository.ifilestorage): |
581 class filelog(baselog, repository.ifilestorage): |
582 def __init__(self, gr, db, path): |
582 def __init__(self, gr, db, path): |
583 super(filelog, self).__init__(gr, db) |
583 super().__init__(gr, db) |
584 assert isinstance(path, bytes) |
584 assert isinstance(path, bytes) |
585 self.path = path |
585 self.path = path |
586 self.nullid = sha1nodeconstants.nullid |
586 self.nullid = sha1nodeconstants.nullid |
587 |
587 |
588 def read(self, node): |
588 def read(self, node): |