mercurial/filelog.py
changeset 39869 14e500b58263
parent 39867 4b816a83e17e
child 39870 b399ff55ee6d
--- a/mercurial/filelog.py	Wed Sep 26 11:27:41 2018 -0700
+++ b/mercurial/filelog.py	Mon Sep 24 11:56:48 2018 -0700
@@ -187,6 +187,14 @@
     def verifyintegrity(self, state):
         return self._revlog.verifyintegrity(state)
 
+    def storageinfo(self, exclusivefiles=False, sharedfiles=False,
+                    revisionscount=False, trackedsize=False,
+                    storedsize=False):
+        return self._revlog.storageinfo(
+            exclusivefiles=exclusivefiles, sharedfiles=sharedfiles,
+            revisionscount=revisionscount, trackedsize=trackedsize,
+            storedsize=storedsize)
+
     # TODO these aren't part of the interface and aren't internal methods.
     # Callers should be fixed to not use them.