Mercurial > evolve
diff hgext3rd/topic/revset.py @ 4717:7b36f9728351
py3: use bytes for revset predicate registrations
author | Martin von Zweigbergk <martinvonz@google.com> |
---|---|
date | Tue, 09 Jul 2019 10:56:42 -0700 |
parents | 312b9e8a4c9c |
children | 48b30ff742cb |
line wrap: on
line diff
--- a/hgext3rd/topic/revset.py Tue Jul 09 10:56:42 2019 -0700 +++ b/hgext3rd/topic/revset.py Tue Jul 09 10:56:42 2019 -0700 @@ -28,7 +28,7 @@ return x[1] raise error.ParseError(err) -@revsetpredicate('topic([string or set])') +@revsetpredicate(b'topic([string or set])') def topicset(repo, subset, x): """All changesets with the specified topic or the topics of the given changesets. Without the argument, all changesets with any topic specified. @@ -76,7 +76,7 @@ return (subset & mutable).filter(matches) -@revsetpredicate('ngtip([branch])') +@revsetpredicate(b'ngtip([branch])') def ngtipset(repo, subset, x): """The untopiced tip. @@ -89,7 +89,7 @@ branch = repo['.'].branch() return subset & revset.baseset(destination.ngtip(repo, branch)) -@revsetpredicate('stack()') +@revsetpredicate(b'stack()') def stackset(repo, subset, x): """All relevant changes in the current topic,