mercurial/sparse.py
changeset 33298 f41a99c45956
parent 33297 ba5d89774db6
child 33299 41448fc51510
--- a/mercurial/sparse.py	Thu Jul 06 12:14:03 2017 -0700
+++ b/mercurial/sparse.py	Thu Jul 06 12:14:12 2017 -0700
@@ -46,3 +46,10 @@
             current.add(line)
 
     return includes, excludes, profiles
+
+# Exists as separate function to facilitate monkeypatching.
+def readprofile(repo, profile, changeid):
+    """Resolve the raw content of a sparse profile file."""
+    # TODO add some kind of cache here because this incurs a manifest
+    # resolve and can be slow.
+    return repo.filectx(profile, changeid=changeid).data()