Skip to content
Snippets Groups Projects
Commit d4693892 authored by Sean Farley's avatar Sean Farley
Browse files

revsets: use baseset instead of raw list

We fallback to using a standard set if baseset is not available
parent f05962b0
No related branches found
No related tags found
No related merge requests found
......@@ -62,6 +62,14 @@
# The ignore module disappeared in Mercurial 3.5
ignoremod = False
baseset = set
try:
baseset = revset.baseset
except AttributeError:
# baseset was added in hg 3.0
pass
demandimport.ignore.extend([
'collections',
])
......@@ -338,7 +346,8 @@
revset.getargs(x, 0, 0, "fromgit takes no arguments")
git = repo.githandler
node = repo.changelog.node
return [r for r in subset if git.map_git_get(hex(node(r))) is not None]
return baseset(r for r in subset
if git.map_git_get(hex(node(r))) is not None)
def revset_gitnode(repo, subset, x):
'''``gitnode(hash)``
......@@ -355,7 +364,7 @@
if gitnode is None:
return False
return rev in [gitnode, gitnode[:12]]
return [r for r in subset if matches(r)]
return baseset(r for r in subset if matches(r))
def gitnodekw(**args):
""":gitnode: String. The Git changeset identification hash, as a 40 hexadecimal digit string."""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment