unstable: use the `_mutablerevs` function when computing content divergent
This is a useful function to get the revision relevant to these computation,
lets make sure all code use it, so that we can improve that `_mutablerevs`
function in a later changeset.
--- a/mercurial/obsolete.py Mon Nov 06 23:15:17 2023 +0100
+++ b/mercurial/obsolete.py Mon Nov 06 23:15:58 2023 +0100
@@ -1016,7 +1016,8 @@
obsstore = repo.obsstore
newermap = {}
tonode = repo.changelog.node
- for rev in repo.revs(b'(not public()) - obsolete()'):
+ candidates = sorted(_mutablerevs(repo) - getrevs(repo, b"obsolete"))
+ for rev in candidates:
node = tonode(rev)
mark = obsstore.predecessors.get(node, ())
toprocess = set(mark)