# HG changeset patch # User Matt Harbison # Date 1739939145 18000 # Node ID d297d80319b3c781917bd3b5f312b410d6b4eafb # Parent e70f93318c262eb5ca7cd41ceeb9ccd2864d82ab manifestrevlog: subclass the new `repository.imanifeststorage` Protocol class diff -r e70f93318c26 -r d297d80319b3 mercurial/manifest.py --- a/mercurial/manifest.py Tue Dec 17 19:32:31 2024 -0500 +++ b/mercurial/manifest.py Tue Feb 18 23:25:45 2025 -0500 @@ -1672,7 +1672,7 @@ """Exception raised when fastdelta isn't usable on a manifest.""" -class manifestrevlog: # (repository.imanifeststorage) +class manifestrevlog(repository.imanifeststorage): """A revlog that stores manifest texts. This is responsible for caching the full-text manifest contents. """