Kiln » Dependencies » Dulwich Read More
Clone URL:  
Pushed to one repository · View In Graph Contained in master

Improve docstrings.

Changeset d3de11b596be

Parent b4a7c9ee386d

by Jelmer Vernooij

Changes to one file · Browse files at d3de11b596be Showing diff from parent b4a7c9ee386d Diff from another changeset...

 
694
695
696
697
 
 
 
 
 
 
698
699
700
 
707
708
709
710
 
711
712
713
 
694
695
696
 
697
698
699
700
701
702
703
704
705
 
712
713
714
 
715
716
717
718
@@ -694,7 +694,12 @@
     class ObjectStoreGraphWalker(object): - """Graph walker that finds out what commits are missing from an object store.""" + """Graph walker that finds out what commits are missing from an object + store. + + :ivar heads: Revisions without descendants in the local repo + :ivar get_parents: Function to retrieve parents in the local repo + """     def __init__(self, local_heads, get_parents):   """Create a new instance. @@ -707,7 +712,7 @@
  self.parents = {}     def ack(self, sha): - """Ack that a particular revision and its ancestors are present in the source.""" + """Ack that a revision and its ancestors are present in the source."""   if sha in self.heads:   self.heads.remove(sha)   if sha in self.parents: