# HG changeset patch # User Pierre-Yves David # Date 1412761666 25200 # Node ID a9fb3d598ca2e2d96f9fc3d19d974ba2279dd321 # Parent 88ad04bcdc741269fb0e68120eedbe39b03a2d12 revset-destination: remove usage of `set()` All smartset classes have fast lookup, so this function will be removed soon. diff -r 88ad04bcdc74 -r a9fb3d598ca2 mercurial/revset.py --- a/mercurial/revset.py Wed Oct 08 02:47:24 2014 -0700 +++ b/mercurial/revset.py Wed Oct 08 02:47:46 2014 -0700 @@ -692,9 +692,9 @@ is the same as passing all(). """ if x is not None: - args = getset(repo, spanset(repo), x).set() + args = getset(repo, spanset(repo), x) else: - args = getall(repo, spanset(repo), x).set() + args = getall(repo, spanset(repo), x) dests = set()