Mercurial > public > mercurial-scm > hg
diff tests/test-doctest.py @ 30881:1be65deb3d54
smartset: move set classes and related functions from revset module (API)
These classes are pretty large and independent from revset computation.
2961 mercurial/revset.py
973 mercurial/smartset.py
3934 total
revset.prettyformatset() is renamed to smartset.prettyformat(). Smartset
classes are aliased since they are quite common in revset.py.
author | Yuya Nishihara <yuya@tcha.org> |
---|---|
date | Sun, 16 Oct 2016 17:28:51 +0900 |
parents | 783016005122 |
children | 0b8356705de6 |
line wrap: on
line diff
--- a/tests/test-doctest.py Wed Jan 25 22:39:17 2017 +0900 +++ b/tests/test-doctest.py Sun Oct 16 17:28:51 2016 +0900 @@ -29,6 +29,7 @@ testmod('mercurial.pathutil') testmod('mercurial.parser') testmod('mercurial.revset') +testmod('mercurial.smartset') testmod('mercurial.store') testmod('mercurial.subrepo') testmod('mercurial.templatefilters')