mercurial/parser.py
Mon, 21 Feb 2022 13:08:28 -0700 Gregory Szorc py3: use class X: instead of class X(object):
Thu, 03 Mar 2022 17:34:00 +0100 Gregory Szorc py2: remove simple from __future__ statements
Mon, 20 Sep 2021 10:59:26 -0400 Matt Harbison parser: force a `ValueError` to bytes before passing to `error.ParseError`
Thu, 25 Mar 2021 18:02:08 +0100 Raphaël Gomès contributor: change mentions of mpm to olivia
Fri, 27 Nov 2020 17:03:29 -0500 Augie Fackler formating: upgrade to black 20.8b1
Thu, 22 Oct 2020 09:58:05 -0700 Martin von Zweigbergk errors: name arguments to ParseError constructor
Sun, 01 Dec 2019 18:46:10 -0500 Matt Harbison cleanup: fix docstring formatting
Tue, 08 Oct 2019 15:06:18 -0700 Martin von Zweigbergk cleanup: join string literals that are already on one line
Sun, 06 Oct 2019 09:48:39 -0400 Augie Fackler formatting: byteify all mercurial/ and hgext/ string literals
Sun, 06 Oct 2019 09:45:02 -0400 Augie Fackler formatting: blacken the codebase
Fri, 03 May 2019 20:06:03 +0900 Yuya Nishihara parser: fix crash by parsing "()" in keyword argument position stable
Fri, 10 Aug 2018 00:12:55 -0400 Augie Fackler parser: replace bespoke _brepr with stringutil.pprint
Thu, 22 Mar 2018 21:56:20 +0900 Yuya Nishihara stringutil: bulk-replace call sites to point to new module
Thu, 01 Mar 2018 17:03:40 -0500 Yuya Nishihara py3: byte-stringify ValueError of unescapestr() to reraise as ParseError
Sun, 03 Sep 2017 14:56:31 +0900 Yuya Nishihara doctest: use print_function and convert bytes to unicode where needed
Sun, 03 Sep 2017 14:32:11 +0900 Yuya Nishihara doctest: bulk-replace string literals with b'' for Python 3
Sun, 03 Sep 2017 21:17:25 +0900 Yuya Nishihara parser: stabilize output of prettyformat() by using byte-safe repr()
Wed, 17 Feb 2016 21:31:09 +0900 Yuya Nishihara parser: add helper function to test if pattern matches parsed tree
Wed, 17 Feb 2016 21:30:04 +0900 Yuya Nishihara parser: add helper function that constructs parsed tree from template
Sun, 09 Apr 2017 11:58:27 +0900 Yuya Nishihara parser: preserve order of keyword arguments
Mon, 03 Apr 2017 22:07:09 +0900 Yuya Nishihara parser: extend buildargsdict() to support arbitrary number of **kwargs
Sat, 08 Apr 2017 20:07:37 +0900 Yuya Nishihara parser: verify excessive number of args excluding kwargs in buildargsdict()
Fri, 17 Mar 2017 23:42:46 +0900 Yuya Nishihara util: wrap s.decode('string_escape') calls for future py3 compatibility
Sun, 12 Mar 2017 00:44:59 -0500 Augie Fackler parser: use %d instead of %s for interpolating error position
Mon, 09 Jan 2017 15:25:52 +0900 Yuya Nishihara parser: extend buildargsdict() to support variable-length positional args
Mon, 09 Jan 2017 15:15:21 +0900 Yuya Nishihara parser: make buildargsdict() precompute position where keyword args start
Mon, 17 Oct 2016 23:16:55 +0200 Mads Kiilerich spelling: fixes of non-dictionary words
Sun, 05 Jul 2015 21:11:19 +0900 Yuya Nishihara parser: remove unused binding parameter from suffix action
Sun, 17 Apr 2016 12:31:06 +0900 Yuya Nishihara parser: shorten prefix of alias parsing errors
Sun, 17 Apr 2016 12:20:57 +0900 Yuya Nishihara parser: rephrase "'$' not for alias arguments" message
Tue, 29 Mar 2016 17:27:34 +0900 Yuya Nishihara parser: factor out _trygetfunc() that extracts function name and arguments
Tue, 29 Mar 2016 17:21:11 +0900 Yuya Nishihara parser: make _getalias() return (alias, pattern-args) pair
Tue, 29 Mar 2016 16:50:16 +0900 Yuya Nishihara parser: drop redundant comparison between alias declaration tree and pattern
Mon, 29 Feb 2016 22:58:15 +0900 Yuya Nishihara revset: rename findaliases() to expandaliases()
Tue, 29 Mar 2016 16:30:59 +0900 Yuya Nishihara parser: add short comment how aliases are expanded in phases
Tue, 29 Mar 2016 16:19:31 +0900 Yuya Nishihara parser: reorder alias expansion routine to return early
Mon, 29 Feb 2016 22:15:44 +0900 Yuya Nishihara parser: move functions that process alias expansion to rule-set class
Mon, 29 Feb 2016 19:24:15 +0900 Yuya Nishihara parser: extract helper that creates a dict of aliases
Mon, 29 Feb 2016 18:33:30 +0900 Yuya Nishihara parser: construct alias object by rule-set class
Tue, 29 Mar 2016 00:08:25 +0900 Yuya Nishihara parser: unify parser function of alias declaration and definition
Mon, 29 Feb 2016 18:10:07 +0900 Yuya Nishihara parser: move alias definition parser to common rule-set class
Mon, 29 Feb 2016 18:00:51 +0900 Yuya Nishihara parser: move _relabelaliasargs() to common rule-set class
Mon, 29 Feb 2016 17:54:03 +0900 Yuya Nishihara parser: move alias declaration parser to common rule-set class
Sun, 03 Apr 2016 16:55:23 +0900 Yuya Nishihara parser: add stub class that will host alias parsing and expansion
Mon, 29 Feb 2016 17:02:56 +0900 Yuya Nishihara parser: move parsererrordetail() function from revset module
Thu, 10 Sep 2015 23:25:10 +0900 Yuya Nishihara parser: move unescape helper from templater
Sat, 08 Aug 2015 19:44:05 -0700 Gregory Szorc parser: use absolute_import
Mon, 06 Jul 2015 22:01:41 +0900 Yuya Nishihara parser: take suffix action if no infix action is defined
Mon, 06 Jul 2015 21:55:55 +0900 Yuya Nishihara parser: reorder infix/suffix handling to be similar to prefix/primary flow
Sun, 05 Jul 2015 12:09:27 +0900 Yuya Nishihara parser: resolve ambiguity where both prefix and primary actions are defined
Sun, 05 Jul 2015 12:02:13 +0900 Yuya Nishihara parser: separate actions for primary expression and prefix operator
Sun, 05 Jul 2015 11:54:14 +0900 Yuya Nishihara parser: extract function that tests if next token may start new term
Sun, 05 Jul 2015 18:09:15 +0900 Yuya Nishihara parser: factor out function that parses right-hand side of prefix/infix ops
Sun, 05 Jul 2015 17:50:35 +0900 Yuya Nishihara parser: remove unused parameter 'pos' from _match()
Sun, 05 Jul 2015 11:17:22 +0900 Yuya Nishihara parser: fill invalid infix and suffix actions by None
Sat, 27 Jun 2015 17:25:01 +0900 Yuya Nishihara revset: add function to build dict of positional and keyword arguments
Sun, 21 Jun 2015 00:56:09 +0900 Yuya Nishihara parser: update documentation about tokenizer and elements
Sun, 21 Jun 2015 00:49:26 +0900 Yuya Nishihara parser: accept iterator of tokens instead of tokenizer function and program
Sun, 26 Apr 2015 18:05:23 +0900 Yuya Nishihara parser: add helper to reduce nesting of chained infix operations
Wed, 06 May 2015 10:17:41 +0900 Yuya Nishihara parser: extract closure of prettyformat() to a top-level function
less more (0) -60 tip