mercurial/store.py
changeset 50504 862e3a13da44
parent 50498 1b776f25302f
child 50505 32b4c2bbdb94
--- a/mercurial/store.py	Mon May 15 22:03:39 2023 +0200
+++ b/mercurial/store.py	Tue May 16 10:43:36 2023 +0200
@@ -654,7 +654,7 @@
         rootstore = manifest.manifestrevlog(repo.nodeconstants, self.vfs)
         return manifest.manifestlog(self.vfs, repo, rootstore, storenarrowmatch)
 
-    def datafiles(
+    def data_entries(
         self, matcher=None, undecodable=None
     ) -> Generator[BaseStoreEntry, None, None]:
         """Like walk, but excluding the changelog and root manifest.
@@ -735,7 +735,7 @@
         are passed with matches the matcher
         """
         # yield data files first
-        for x in self.datafiles(matcher):
+        for x in self.data_entries(matcher):
             yield x
         for x in self.topfiles():
             yield x
@@ -790,10 +790,12 @@
             new.append((f2, value))
         return new
 
-    def datafiles(
+    def data_entries(
         self, matcher=None, undecodable=None
     ) -> Generator[BaseStoreEntry, None, None]:
-        entries = super(encodedstore, self).datafiles(undecodable=undecodable)
+        entries = super(encodedstore, self).data_entries(
+            undecodable=undecodable
+        )
         for entry in entries:
             if _match_tracked_entry(entry, matcher):
                 yield entry
@@ -992,7 +994,7 @@
     def getsize(self, path):
         return self.rawvfs.stat(path).st_size
 
-    def datafiles(
+    def data_entries(
         self, matcher=None, undecodable=None
     ) -> Generator[BaseStoreEntry, None, None]:
         files = ((f, revlog_type(f)) for f in self.fncache)