D7487: changectx: use unfiltered changelog to access parents of unfiltered revs
marmoute (Pierre-Yves David)
phabricator at mercurial-scm.org
Sun Nov 24 00:21:47 UTC 2019
marmoute updated this revision to Diff 18363.
REPOSITORY
rHG Mercurial
CHANGES SINCE LAST UPDATE
https://phab.mercurial-scm.org/D7487?vs=18350&id=18363
CHANGES SINCE LAST ACTION
https://phab.mercurial-scm.org/D7487/new/
REVISION DETAIL
https://phab.mercurial-scm.org/D7487
AFFECTED FILES
mercurial/context.py
tests/test-repo-filters-tiptoe.t
CHANGE DETAILS
diff --git a/tests/test-repo-filters-tiptoe.t b/tests/test-repo-filters-tiptoe.t
--- a/tests/test-repo-filters-tiptoe.t
+++ b/tests/test-repo-filters-tiptoe.t
@@ -58,7 +58,6 @@
Getting status of null
$ hg status --change null
- debug.filters: computing revision filter for "visible"
Getting status of working copy
diff --git a/mercurial/context.py b/mercurial/context.py
--- a/mercurial/context.py
+++ b/mercurial/context.py
@@ -523,7 +523,12 @@
@propertycache
def _parents(self):
repo = self._repo
- p1, p2 = repo.changelog.parentrevs(self._rev)
+ if self._maybe_filtered:
+ cl = repo.changelog
+ else:
+ cl = repo.unfiltered().changelog
+
+ p1, p2 = cl.parentrevs(self._rev)
if p2 == nullrev:
return [repo[p1]]
return [repo[p1], repo[p2]]
To: marmoute, #hg-reviewers
Cc: mercurial-devel
More information about the Mercurial-devel
mailing list