comparison tests/test-doctest.py @ 31024:0b8356705de6

revset: split language services to revsetlang module (API) New revsetlang module hosts parser, tokenizer, and miscellaneous functions working on parsed tree. It does not include functions for evaluation such as getset() and match(). 2288 mercurial/revset.py 684 mercurial/revsetlang.py 2972 total get*() functions are aliased since they are common in revset.py.
author Yuya Nishihara <yuya@tcha.org>
date Sun, 19 Feb 2017 18:19:33 +0900
parents 1be65deb3d54
children 82350f7fa56c
comparison
equal deleted inserted replaced
31023:aea06029919e 31024:0b8356705de6
26 testmod('mercurial.match') 26 testmod('mercurial.match')
27 testmod('mercurial.minirst') 27 testmod('mercurial.minirst')
28 testmod('mercurial.patch') 28 testmod('mercurial.patch')
29 testmod('mercurial.pathutil') 29 testmod('mercurial.pathutil')
30 testmod('mercurial.parser') 30 testmod('mercurial.parser')
31 testmod('mercurial.revset') 31 testmod('mercurial.revsetlang')
32 testmod('mercurial.smartset') 32 testmod('mercurial.smartset')
33 testmod('mercurial.store') 33 testmod('mercurial.store')
34 testmod('mercurial.subrepo') 34 testmod('mercurial.subrepo')
35 testmod('mercurial.templatefilters') 35 testmod('mercurial.templatefilters')
36 testmod('mercurial.templater') 36 testmod('mercurial.templater')