D3308: scmutil: document that isrevsymbol() raises on ambiguous node prefix

martinvonz (Martin von Zweigbergk) phabricator at mercurial-scm.org
Sat Apr 14 12:16:32 EDT 2018


martinvonz updated this revision to Diff 8282.

REPOSITORY
  rHG Mercurial

CHANGES SINCE LAST UPDATE
  https://phab.mercurial-scm.org/D3308?vs=8259&id=8282

REVISION DETAIL
  https://phab.mercurial-scm.org/D3308

AFFECTED FILES
  mercurial/scmutil.py

CHANGE DETAILS

diff --git a/mercurial/scmutil.py b/mercurial/scmutil.py
--- a/mercurial/scmutil.py
+++ b/mercurial/scmutil.py
@@ -444,6 +444,11 @@
     return node
 
 def isrevsymbol(repo, symbol):
+    """Checks if a symbol exists in the repo.
+
+       See revsymbol() for details. Raises error.LookupError if the symbol is an
+       ambiguous nodeid prefix.
+    """
     try:
         revsymbol(repo, symbol)
         return True



To: martinvonz, #hg-reviewers
Cc: mercurial-devel


More information about the Mercurial-devel mailing list