Fixed typo (qshell instead of shell) in win98 code (see
issue244).
demandload: implement __call__
demandload can now load functions and classes, and not just modules.
(So if you access foo() rather than just foo.* it still works).
demandload still doesn't work for constants.
remove: rewrite to be ~400x faster, bit more friendly
old remove code called localrepo.changes for each file.
was very expensive:
$ hg --time rm arch>/dev/null
Time: real 1066.120 secs (user 1014.450+0.000 sys 18.090+0.000)
new code, same files:
$ hg --time rm arch>/dev/null
Time: real 2.770 secs (user 2.190+0.000 sys 0.580+0.000)
also mention "-f" if not removing files. also allow "-f" to forget
added files.
make test a bit better.
Strip empty lines and trailing spaces around commit messages.
Fixes
issue213 and part of
issue249 (trying to keep node id on import)
Use "# Date" instead of "# Timestamp" for dated export/import of patches.
And don't break up list for % formatting.
Add timestamp field to export format. Make import and mq use it.