Download:
child 89:ba255edcbb21
parent 87:3aacb4bd173a
88:3bf161cb8471
Anton Shestakov <av6@dwimlabs.net>, Fri, 09 Dec 2016 13:57:24 +0800
bench: split wip revset line

1 файлов изменено, 8 вставок(+), 1 удалений(-) [+]
bench.py file | annotate | diff | comparison | revisions
--- a/bench.py Fri Dec 09 12:52:43 2016 +0800
+++ b/bench.py Fri Dec 09 13:57:24 2016 +0800
@@ -13,7 +13,14 @@
from settings import DBPATH, HG, LOCKFILE, TESTHGREPO, TESTREPO, rel
-REVSETWIP = '(parents(not public()) or not public() or . or (head() and branch(default))) and (not obsolete() or unstable()^) and not closed()'
+REVSETWIP = (
+ '(parents(not public())'
+ ' or not public()'
+ ' or .'
+ ' or (head() and branch(default)))'
+ ' and (not obsolete() or unstable()^)'
+ ' and not closed()'
+)
MARKS = OrderedDict((
('blame', 'hg blame README'),
('grepall', 'hg grep "version" --all README'),