##// END OF EJS Templates
manifest: document return type of readfast()...
Augie Fackler -
r24925:d9832a12 default
parent child Browse files
Show More
@@ -793,7 +793,13 b' class manifest(revlog.revlog):'
793 793 return self._newmanifest(d)
794 794
795 795 def readfast(self, node):
796 '''use the faster of readdelta or read'''
796 '''use the faster of readdelta or read
797
798 This will return a manifest which is either only the files
799 added/modified relative to p1, or all files in the
800 manifest. Which one is returned depends on the codepath used
801 to retrieve the data.
802 '''
797 803 r = self.rev(node)
798 804 deltaparent = self.deltaparent(r)
799 805 if deltaparent != revlog.nullrev and deltaparent in self.parentrevs(r):
General Comments 0
You need to be logged in to leave comments. Login now