[Request] [+ ] D12203: scmutil: revert c7e675848027 / scmutil: obsrevs is already a frozenset
indygreg (Gregory Szorc)
phabricator at mercurial-scm.org
Sun Feb 20 00:58:56 UTC 2022
indygreg created this revision.
Herald added a reviewer: hg-reviewers.
Herald added a subscriber: mercurial-patches.
REVISION SUMMARY
The reverted change breaks nearly every command for me when I'm using
obsolescence. Specifically, I get `TypeError: unhashable type: 'set'`
on the changed line. The deleted comment actual draws attention to this
issue.
REPOSITORY
rHG Mercurial
BRANCH
stable
REVISION DETAIL
https://phab.mercurial-scm.org/D12203
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
@@ -366,7 +366,9 @@
obsrevs = obsolete.getrevs(repo, b'obsolete')
if not cl.filteredrevs and not obsrevs:
return None
- key = (maxrev, hash(cl.filteredrevs), hash(obsrevs))
+ # TODO: obsrevs should be a frozenset, but right now obsolete.getrevs()
+ # may return a set, which is not a hashable type.
+ key = (maxrev, hash(cl.filteredrevs), hash(frozenset(obsrevs)))
else:
if not cl.filteredrevs:
return None
To: indygreg, #hg-reviewers
Cc: mercurial-patches, mercurial-devel
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mercurial-scm.org/pipermail/mercurial-patches/attachments/20220220/f7dc0fc3/attachment.html>
More information about the Mercurial-patches
mailing list