Mercurial > public > mercurial-scm > hg-stable
changeset 52994:de36c56224e0
memmanifestctx: subclass the new `imanifestrevisionwritable` Protocol class
author | Matt Harbison <matt_harbison@yahoo.com> |
---|---|
date | Tue, 18 Feb 2025 23:27:19 -0500 |
parents | d297d80319b3 |
children | 53e9e3dfafeb |
files | mercurial/manifest.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/manifest.py Tue Feb 18 23:25:45 2025 -0500 +++ b/mercurial/manifest.py Tue Feb 18 23:27:19 2025 -0500 @@ -2155,7 +2155,7 @@ return self._rootstore._revlog.update_caches(transaction=transaction) -class memmanifestctx: # (repository.imanifestrevisionwritable) +class memmanifestctx(repository.imanifestrevisionwritable): _manifestdict: manifestdict def __init__(self, manifestlog):