mercurial/copies.py
changeset 42487 5ceb91136ebe
parent 42486 35d674a3d5db
child 42488 c0b51449bf6b
--- a/mercurial/copies.py	Thu Apr 18 21:22:14 2019 -0700
+++ b/mercurial/copies.py	Thu Apr 18 21:21:44 2019 -0700
@@ -297,7 +297,7 @@
         if r == b.rev():
             _filter(a, b, copies)
             return copies
-        for c in children[r]:
+        for i, c in enumerate(children[r]):
             childctx = repo[c]
             if r == childctx.p1().rev():
                 parent = 1
@@ -309,7 +309,13 @@
             if not match.always():
                 childcopies = {dst: src for dst, src in childcopies.items()
                                if match(dst)}
-            childcopies = _chain(copies, childcopies)
+            # Copy the dict only if later iterations will also need it
+            if i != len(children[r]) - 1:
+                copies = copies.copy()
+            if childcopies:
+                childcopies = _chain(copies, childcopies)
+            else:
+                childcopies = copies
             for f in childctx.filesremoved():
                 if f in childcopies:
                     del childcopies[f]