##// END OF EJS Templates
revset-benchmark: add max(::(tip~20) - obsolete())...
revset-benchmark: add max(::(tip~20) - obsolete()) This revset is used in evolve. The new revset lazyness should make it all faster but in practice it is significantly slower. Below is a timing for this entry on my Mercurial repo. 2.9.2) ! wall 0.034598 comb 0.040000 user 0.040000 sys 0.000000 (best of 100) 3.0+@) ! wall 0.062268 comb 0.060000 user 0.060000 sys 0.000000 (best of 100) The ~20 have been taken arbitrary.

File last commit:

r13383:70ef5b61 default
r21546:cb0e28d6 default
Show More
buildlocal.bat
9 lines | 267 B | application/x-msdownload | BatchLexer
Adrian Buehlmann
contrib: add win32/buildlocal.bat
r13383 @echo off
rem Double-click this file to (re)build Mercurial for Windows in place.
rem Useful for testing and development.
cd ..\..
del /Q mercurial\*.pyd
del /Q mercurial\*.pyc
rmdir /Q /S mercurial\locale
python setup.py build_py -c -d . build_ext -i build_mo
pause