# HG changeset patch # User Yuya Nishihara # Date 1430044967 -32400 # Node ID 235f6490550ce67e1c69a1cb9d51a9e49b292d6f # Parent f9a29dc964a34318be1a72ef92e422a6e242a392 revset: move validation of incomplete parsing to parse() function revset.parse() should be responsible for all parsing errors. Perhaps it wasn't because 'revset.parse' was not a real function when the validation code was added at ffcb7e4d719f. diff -r f9a29dc964a3 -r 235f6490550c mercurial/commands.py --- a/mercurial/commands.py Fri May 22 14:39:34 2015 -0700 +++ b/mercurial/commands.py Sun Apr 26 19:42:47 2015 +0900 @@ -2918,7 +2918,7 @@ expansion. """ if ui.verbose: - tree = revset.parse(expr)[0] + tree = revset.parse(expr) ui.note(revset.prettyformat(tree), "\n") newtree = revset.findaliases(ui, tree) if newtree != tree: diff -r f9a29dc964a3 -r 235f6490550c mercurial/hgweb/webcommands.py --- a/mercurial/hgweb/webcommands.py Fri May 22 14:39:34 2015 -0700 +++ b/mercurial/hgweb/webcommands.py Sun Apr 26 19:42:47 2015 +0900 @@ -223,7 +223,7 @@ revdef = 'reverse(%s)' % query try: - tree, pos = revset.parse(revdef) + tree = revset.parse(revdef) except ParseError: # can't parse to a revset tree return MODE_KEYWORD, query diff -r f9a29dc964a3 -r 235f6490550c mercurial/revset.py --- a/mercurial/revset.py Fri May 22 14:39:34 2015 -0700 +++ b/mercurial/revset.py Sun Apr 26 19:42:47 2015 +0900 @@ -2509,7 +2509,10 @@ def parse(spec, lookup=None): p = parser.parser(tokenize, elements) - return p.parse(spec, lookup=lookup) + tree, pos = p.parse(spec, lookup=lookup) + if pos != len(spec): + raise error.ParseError(_("invalid token"), pos) + return tree def posttreebuilthook(tree, repo): # hook for extensions to execute code on the optimized tree @@ -2521,9 +2524,7 @@ lookup = None if repo: lookup = repo.__contains__ - tree, pos = parse(spec, lookup) - if (pos != len(spec)): - raise error.ParseError(_("invalid token"), pos) + tree = parse(spec, lookup) if ui: tree = findaliases(ui, tree, showwarning=ui.warn) tree = foldconcat(tree) diff -r f9a29dc964a3 -r 235f6490550c tests/test-glog.t --- a/tests/test-glog.t Fri May 22 14:39:34 2015 -0700 +++ b/tests/test-glog.t Sun Apr 26 19:42:47 2015 +0900 @@ -89,7 +89,7 @@ > if opts.get('print_revset'): > expr = cmdutil.getgraphlogrevs(repo, pats, opts)[1] > if expr: - > tree = revset.parse(expr)[0] + > tree = revset.parse(expr) > else: > tree = [] > ui.write('%r\n' % (opts.get('rev', []),))