# HG changeset patch # User Augie Fackler # Date 1447290125 18000 # Node ID 263db31329a62ba00cc9533785a9102efde27aca # Parent 70884715725e4cb552e69dd33eb58ca1200bd5a2 localrepo: document nodebookmarks diff -r 70884715725e -r 263db31329a6 mercurial/localrepo.py --- a/mercurial/localrepo.py Wed Nov 11 19:47:49 2015 -0500 +++ b/mercurial/localrepo.py Wed Nov 11 20:02:05 2015 -0500 @@ -759,6 +759,7 @@ return self._tagscache.nodetagscache.get(node, []) def nodebookmarks(self, node): + """return the list of bookmarks pointing to the specified node""" marks = [] for bookmark, n in self._bookmarks.iteritems(): if n == node: