mercurial/revset.py
Sun, 24 May 2015 14:49:41 +0900 Yuya Nishihara revset: make internal _list() expression remove duplicated revisions
Sun, 26 Apr 2015 18:13:48 +0900 Yuya Nishihara revset: reduce nesting of chained 'or' operations (issue4624)
Sun, 24 May 2015 14:10:52 +0900 Yuya Nishihara revset: add helper to build balanced addsets from chained 'or' operations
Sun, 26 Apr 2015 18:27:32 +0900 Yuya Nishihara revset: comment that we can't swap 'or' operands by weight
Tue, 26 May 2015 07:44:37 -0500 Matt Mackall merge with stable
Sun, 24 May 2015 10:29:33 +0900 Yuya Nishihara revset: drop magic of fullreposet membership test (issue4682) stable
Sun, 26 Apr 2015 22:20:03 +0900 Yuya Nishihara parser: move prettyformat() function from revset module
Sun, 26 Apr 2015 19:42:47 +0900 Yuya Nishihara revset: move validation of incomplete parsing to parse() function
Tue, 19 May 2015 23:29:20 +0900 Yuya Nishihara revset: drop translation marker from error message of _notpublic()
Tue, 19 May 2015 23:26:25 +0900 Yuya Nishihara revset: drop docstring from internal _notpublic() function
Fri, 24 Apr 2015 14:30:30 -0700 Laurent Charignon revset: optimize not public revset
Sat, 16 May 2015 14:30:07 -0400 Augie Fackler cleanup: use __builtins__.any instead of util.any
Sun, 17 May 2015 18:06:09 -0700 Pierre-Yves David generatorset: use 'next()' to simplify the code
Sun, 17 May 2015 18:00:38 -0700 Pierre-Yves David revset: use 'next()' to detect end of iteration in 'last'
Sun, 17 May 2015 17:58:39 -0700 Pierre-Yves David revset: use 'next()' to detect end of iteration in 'limit'
Sun, 17 May 2015 17:54:58 -0700 Pierre-Yves David _revancestors: use 'next' to remove the verbose try except clauses
Sat, 16 May 2015 21:42:09 +0900 Yuya Nishihara revset: extract addset._iterordered to free function
Sat, 16 May 2015 14:05:02 +0900 Yuya Nishihara revset: use fastasc/fastdesc switch consistently in addset.__iter__
Mon, 30 Mar 2015 20:56:37 +0900 Yuya Nishihara revset: drop redundant filteredset from right-hand side set of "or" operation
Fri, 15 May 2015 00:25:43 -0700 Pierre-Yves David revset: fix iteration over ordered addset composed of non-ordered operands
Fri, 15 May 2015 22:38:24 +0900 Yuya Nishihara revset: remove unused 'only' from methods table
Fri, 15 May 2015 11:52:09 -0500 Matt Mackall merge with stable
Fri, 15 May 2015 22:32:31 +0900 Yuya Nishihara revset: map postfix '%' to only() to optimize operand recursively (issue4670) stable
Mon, 30 Mar 2015 19:51:40 +0900 Yuya Nishihara revset: test current behavior of addset class
Mon, 27 Apr 2015 23:03:20 +0900 Yuya Nishihara revset: remove duplicated definition of choice() from addset._iterordered()
Wed, 26 Mar 2014 15:55:50 -0700 Pierre-Yves David revset: avoid returning duplicates when returning ancestors
Wed, 26 Mar 2014 16:21:30 -0700 Pierre-Yves David revset: use an iterator instead of a dequeue in ancestors()
Wed, 06 May 2015 11:29:09 -0700 Martin von Zweigbergk revset: return early when revs is empty
Wed, 26 Mar 2014 16:14:30 -0700 Pierre-Yves David revset: rename 'revsnode' to 'inputrev' in ancestors
Mon, 04 May 2015 12:36:48 -0700 Pierre-Yves David revset: make generatorset.__nonzero__ lazy
Sun, 03 May 2015 12:28:15 -0400 Jordi GutiƩrrez Hermoso revset: don't error out if tokens parse as existing symbols
Sat, 11 Oct 2014 01:17:40 -0700 Pierre-Yves David revset: narrow the subset using smartset operation in roots()
Mon, 20 Apr 2015 10:52:20 +0300 Alexander Drozdov revset: id() called with 40-byte strings should give the same results as for short strings stable
Sun, 12 Apr 2015 19:00:31 +0900 Yuya Nishihara revset: undocument wdir() until its command outputs get stable
Tue, 14 Apr 2015 12:54:16 -0400 Gregory Szorc revset: don't import discovery at module level
Mon, 13 Apr 2015 20:53:05 -0700 Ryan McElroy revsets: more informative syntax error message
Tue, 24 Mar 2015 14:24:55 -0700 Laurent Charignon revset: add hook after tree parsing
Mon, 16 Mar 2015 17:11:25 +0900 Yuya Nishihara revset: optimize "x & fullreposet" case
Mon, 16 Mar 2015 18:36:53 +0900 Yuya Nishihara debugrevspec: show nesting structure of smartsets if verbose
Mon, 16 Mar 2015 18:15:06 +0900 Yuya Nishihara revset: add __repr__ to all smartset classes
Wed, 25 Mar 2015 14:56:54 -0400 Matt Harbison revset: add the 'subrepo' symbol
Sat, 16 Aug 2014 13:44:16 +0900 Yuya Nishihara revset: add wdir() function to specify workingctx revision by command
Tue, 10 Feb 2015 19:57:51 -0800 Durham Goode revbranchcache: store repo on the object
Tue, 17 Mar 2015 20:50:19 +0900 Yuya Nishihara revset: replace "working copy" with "working directory" in function help
Fri, 13 Mar 2015 17:00:06 -0400 Jordi GutiƩrrez Hermoso style: kill ersatz if-else ternary operators
Mon, 26 Jan 2015 14:32:30 -0500 Augie Fackler revset: use UnknownIdentifier where appropriate
Thu, 08 Jan 2015 23:05:45 +0900 Yuya Nishihara revset: extend fullreposet to make "null" revision magically appears in set
Sat, 10 Jan 2015 18:09:25 +0900 Yuya Nishihara revset: duplicate spanset.__contains__ to fullreposet for modification
Sat, 10 Jan 2015 14:49:50 +0900 Yuya Nishihara revset: have all() filter out null revision
Sat, 10 Jan 2015 16:41:36 +0900 Yuya Nishihara revset: drop unnecessary calls of getall() with empty argument
Mon, 02 Mar 2015 01:20:14 -0600 Matt Mackall merge with stable
Fri, 06 Feb 2015 02:52:10 +0100 Mads Kiilerich revisionbranchcache: fall back to slow path if starting readonly (issue4531) stable 3.3.1
Thu, 05 Feb 2015 14:45:49 +0900 FUJIWARA Katsunori revset: mask specific names for named() predicate stable
Thu, 08 Jan 2015 23:43:15 +0900 Yuya Nishihara revset: drop factory that promotes spanset to fullreposet
Thu, 08 Jan 2015 23:46:54 +0900 Yuya Nishihara revset: specify fullreposet without using spanset factory
Mon, 02 Feb 2015 22:21:07 +0900 Yuya Nishihara revset: make match function initiate query from full set by default
Wed, 04 Feb 2015 21:37:06 +0900 Yuya Nishihara revset: have rev() validate input by repo.changelog.__contains__()
Tue, 03 Feb 2015 17:54:01 -0600 Matt Mackall merge with stable
Tue, 03 Feb 2015 21:56:29 +0900 FUJIWARA Katsunori revset: get revision number of each node from target namespaces stable
Mon, 02 Feb 2015 23:07:04 +0900 FUJIWARA Katsunori revset: replace parsing alias definition by _parsealiasdefn to parse strictly
less more (0) -300 -100 -60 tip