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

Fix syntax errors in docstrings.

Changeset 2bcbc61672e5

Parent 9039abf82c4a

by Jelmer Vernooij

Changes to 2 files · Browse files at 2bcbc61672e5 Showing diff from parent 9039abf82c4a Diff from another changeset...

 
228
229
230
231
 
 
232
233
234
 
228
229
230
 
231
232
233
234
235
@@ -228,7 +228,8 @@
  :param tree_id: The SHA of the merge tree.   :param rename_detector: RenameDetector object for detecting renames.   - :yield: Lists of TreeChange objects, one per conflicted path in the merge. + :return: Iterator over lists of TreeChange objects, one per conflicted path + in the merge.     Each list contains one element per parent, with the TreeChange for that   path relative to that parent. An element may be None if it never existed
Change 1 of 1 Show Entire File dulwich/​walk.py Stacked
 
341
342
343
344
345
 
 
346
347
348
 
341
342
343
 
 
344
345
346
347
348
@@ -341,8 +341,8 @@
  order, e.g. in commit time order.     :param entries: An iterable of WalkEntry objects. - :yield: WalkEntry objects from entries in FIFO order, except where a parent - would be yielded before any of its children. + :return: iterator over WalkEntry objects from entries in FIFO order, except + where a parent would be yielded before any of its children.   """   todo = collections.deque()   pending = {}