hgweb: fix WSGI iterators handling in CGI adapter (
issue1254)
Make test-hardlinks-safety portable
On some systems cp cannot create/preserve hardlinks.
Use util.copyfiles instead, after making sure it actually does
create hardlinks.
Adjust test output for hg help qrecord since
ef14c773b3d6
mq: fix docs for qrefresh -D (
issue1234)
hgweb: removed unnecessary del before function return
Deleting tmpl just before the return statement should have no effect
since tmpl goes out of scope anyway. But it confuses pyflakes who
thinks tmpl is undefined when it is used in the except blocks below.