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

martinvonz (Martin von Zweigbergk) phabricator at mercurial-scm.org
Fri Apr 13 18:00:14 UTC 2018


martinvonz created this revision.
Herald added a subscriber: mercurial-devel.
Herald added a reviewer: hg-reviewers.

REPOSITORY
  rHG Mercurial

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
+       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