bookmarks: refactor in preparation for next commit
authorValentin Gatien-Baron <valentin.gatienbaron@gmail.com>
Thu, 13 Feb 2020 22:06:57 -0500
changeset 44371 0275000564c4
parent 44370 edaae3616ba3
child 44372 8407031f195f
bookmarks: refactor in preparation for next commit Differential Revision: https://phab.mercurial-scm.org/D8116
mercurial/bookmarks.py
--- a/mercurial/bookmarks.py	Sat Feb 15 14:51:33 2020 -0500
+++ b/mercurial/bookmarks.py	Thu Feb 13 22:06:57 2020 -0500
@@ -463,6 +463,10 @@
     return bool(bmchanges)
 
 
+def isdivergent(b):
+    return b'@' in b and not b.endswith(b'@')
+
+
 def listbinbookmarks(repo):
     # We may try to list bookmarks on a repo type that does not
     # support it (e.g., statichttprepository).
@@ -471,7 +475,7 @@
     hasnode = repo.changelog.hasnode
     for k, v in pycompat.iteritems(marks):
         # don't expose local divergent bookmarks
-        if hasnode(v) and (b'@' not in k or k.endswith(b'@')):
+        if hasnode(v) and not isdivergent(k):
             yield k, v