Kiln » Dependencies » Dulwich Read More
Clone URL:  
Pushed to one repository · View In Graph Contained in master-1, master-0, and 0.9.4

Fix dulwich._compat docstring to make pydoctor happy.

Changeset 0019a49d4d7c

Parent 26816e6ed80b

by Jelmer Vernooij

Changes to one file · Browse files at 0019a49d4d7c Showing diff from parent 26816e6ed80b Diff from another changeset...

 
411
412
413
414
 
415
416
417
418
419
420
421
422
423
 
411
412
413
 
414
415
416
417
418
419
 
420
421
422
@@ -411,13 +411,12 @@
  yield (k, self[k])     def update(*args, **kwds): - """od.update(E, **F) -> None. Update od from dict/iterable E and F. + """od.update(E, F) -> None. Update od from dict/iterable E and F.     If E is a dict instance, does: for k in E: od[k] = E[k]   If E has a .keys() method, does: for k in E.keys(): od[k] = E[k]   Or if E is an iterable of items, does: for k, v in E: od[k] = v   In either case, this is followed by: for k, v in F.items(): od[k] = v -   """   if len(args) > 2:   raise TypeError('update() takes at most 2 positional '