mercurial/revsetlang.py
Thu, 22 Mar 2018 21:56:20 +0900 Yuya Nishihara stringutil: bulk-replace call sites to point to new module
Sun, 04 Mar 2018 07:03:50 -0500 Yuya Nishihara templater: fix position of terminator character in error message
Sat, 03 Mar 2018 15:31:37 -0800 Ryan McElroy revsetlang: add a hint for more useful parse errors
Sat, 27 Jan 2018 14:17:26 +0900 Yuya Nishihara tests: make doctest py3-compatible again
Thu, 01 Feb 2018 14:59:38 -0500 Augie Fackler revsetlang: fix a doctest example on Python 3
Tue, 02 Jan 2018 18:35:11 +0900 Yuya Nishihara revsetlang: add %p specifier to format list of function arguments
Tue, 02 Jan 2018 21:05:40 +0900 Yuya Nishihara revsetlang: unnest inner functions from formatspec()
Sat, 01 Apr 2017 17:51:56 +0900 Yuya Nishihara revsetlang: fix quoting of %ls string
Sat, 01 Apr 2017 17:44:07 +0900 Yuya Nishihara revsetlang: catch invalid value passed to formatspec()
Sat, 01 Apr 2017 17:28:28 +0900 Yuya Nishihara revsetlang: check incomplete revspec format character
Sat, 01 Apr 2017 17:25:45 +0900 Yuya Nishihara revsetlang: check number of arguments passed to formatspec()
Sat, 01 Apr 2017 17:18:31 +0900 Yuya Nishihara revsetlang: catch invalid format character with %l prefix
Sat, 01 Apr 2017 17:12:48 +0900 Yuya Nishihara revsetlang: raise ParseError to report invalid format character
Sat, 01 Apr 2017 17:04:49 +0900 Yuya Nishihara revsetlang: use iterator to track current argument in formatspec()
Sat, 01 Apr 2017 16:56:47 +0900 Yuya Nishihara revsetlang: unnest "if True" in formatrevspec()
Sat, 01 Apr 2017 16:55:28 +0900 Yuya Nishihara revsetlang: use str.find() to scan expr in formatspec()
Sat, 01 Apr 2017 16:50:11 +0900 Yuya Nishihara revsetlang: avoid string concatenation in formatspec()
Sat, 30 Dec 2017 17:55:23 +0900 Yuya Nishihara revset: parse x^:: as (x^):: (issue5764)
Fri, 15 Dec 2017 04:25:32 +0530 Pulkit Goyal revsetlang: add utility function to return hash like symbols from the tree
Fri, 01 Sep 2017 19:42:09 -0700 Jun Wu revset: move weight information to predicate
Fri, 01 Sep 2017 19:30:40 -0700 Jun Wu revset: remove "small" argument from "_optimize"
Sun, 03 Sep 2017 14:32:11 +0900 Yuya Nishihara doctest: bulk-replace string literals with b'' for Python 3
Sun, 03 Sep 2017 17:03:23 +0900 Yuya Nishihara py3: fix mixed bytes/unicode in revsetlang._aliassyminitletters
Mon, 28 Aug 2017 14:49:00 -0700 Jun Wu revset: optimize "draft() & ::x" pattern
Sat, 19 Aug 2017 22:04:03 +0900 Yuya Nishihara revsetlang: remove unused functions
Wed, 17 Feb 2016 21:40:59 +0900 Yuya Nishihara revsetlang: match tree by helper function on optimize
Wed, 17 Feb 2016 21:38:25 +0900 Yuya Nishihara revsetlang: build optimized tree by helper function
Wed, 30 Aug 2017 16:05:12 -0700 Jun Wu revset: do not flip "and" arguments when optimizing
Wed, 30 Aug 2017 22:32:47 +0900 Yuya Nishihara revset: move order constants from revsetlang
Fri, 25 Aug 2017 11:20:34 -0700 Jun Wu revset: improve documentation about ordering handling
Sun, 20 Aug 2017 10:55:11 -0700 Jun Wu revset: remove order information from tree (API)
Mon, 28 Aug 2017 23:44:47 -0700 Jun Wu revset: drop optimization about reordering "or" set elements
Sat, 08 Jul 2017 13:07:59 +0900 Yuya Nishihara revset: add experimental relation and subscript operators
Sat, 08 Jul 2017 12:49:46 +0900 Yuya Nishihara revset: do not compute weight for integer literal argument
Sat, 24 Jun 2017 15:29:42 -0700 Jun Wu revset: make repo.anyrevs accept customized alias override (API)
Sun, 18 Jun 2017 11:57:28 +0900 Yuya Nishihara revsetlang: check arguments passed to ancestors() before optimizing to only()
Sun, 18 Jun 2017 11:39:03 +0900 Yuya Nishihara revsetlang: factor out helper to match ancestors() in parsed tree
Fri, 10 Feb 2017 16:56:29 -0800 Martin von Zweigbergk cleanup: use set literals
Sat, 15 Apr 2017 11:26:09 +0200 Denis Laxalde revsetlang: add a getboolean helper function
Sat, 14 May 2016 20:51:57 +0900 Yuya Nishihara revsetlang: enable optimization of 'x + y' expression
Sun, 26 Mar 2017 16:48:29 -0400 Augie Fackler revsetlang: fix _quote on int on python3
Thu, 23 Mar 2017 10:46:50 -0400 Augie Fackler revsetlang: perform quoting using ui.escapestr instead of repr()
Thu, 23 Mar 2017 10:41:34 -0400 Augie Fackler revsetlang: add docstring with some tests to _quote
Sun, 19 Mar 2017 01:14:19 -0400 Augie Fackler revsetlang: move quoting function to not be a closure
Thu, 23 Mar 2017 10:33:20 -0400 Augie Fackler revsetlang: portably bytestring-ify another pair of int() calls
Sun, 19 Mar 2017 01:03:53 -0400 Augie Fackler revsetlang: portably turn int into bytestring
Thu, 16 Mar 2017 21:36:21 +0900 Yuya Nishihara py3: use bytestr wrapper in revsetlang.tokenize()
Thu, 16 Mar 2017 21:33:25 +0900 Yuya Nishihara py3: use bytestr wrapper in revsetlang.formatspec()
Sun, 12 Mar 2017 17:16:43 -0700 Yuya Nishihara py3: fix slicing of bytes in revset.formatspec()
Sun, 12 Mar 2017 17:13:54 -0700 Yuya Nishihara py3: make set of revset operators and quotes in bytes
Sun, 12 Mar 2017 17:10:14 -0700 Yuya Nishihara py3: convert set of revset initial symbols back to bytes
Sun, 12 Mar 2017 00:46:59 -0500 Augie Fackler revsetlang: slice out single bytes instead of indexing
Sun, 19 Feb 2017 18:19:33 +0900 Yuya Nishihara revset: split language services to revsetlang module (API)
less more (0) tip