Fix memory leak when using hg commands over http repositories
When using hg commands over an http repository in a long running process, a
httphandler instance is leaked for each command, because of a loop
handler.parent -> OpenerDirector and OpenerDirector.handlers -> handler which
is not handled by Python's gc. Discussion on #mercurial concluded that removing
the __del__ method solved the problem.
#/bin/sh
hideport() { sed "s/localhost:$HGPORT/localhost:\$HGPORT/"; }
repr() { python -c "import sys; print repr(sys.stdin.read()).replace('\\n', '\n')"; }
hidehex() { python -c 'import sys, re; print re.replace("\b[0-9A-Fa-f]{12,40}", "X" * 12)'; }
hidetmp() { sed "s/$HGTMP/\$HGTMP/"; }
hidebackup() { sed 's/\(saved backup bundle to \).*/\1/'; }
cleanrebase() {
sed -e 's/\(Rebase status stored to\).*/\1/' \
-e 's/\(Rebase status restored from\).*/\1/' \
-e 's/\(saved backup bundle to \).*/\1/';
}