This replaces patterns such as this:
if f in self._copymap: del self._copymap[f]
with this:
self._copymap.pop(f, None)
Although eliminating the extra lookup/call may be a negligible performance win
in the standard dirstate, alternative implementations, such as
sqldirstate
may see a bigger win where each of these calls results in an RPC,
so the savings is greater.