changeset 46398:154ded9104f1

copies: clarify which case some conditional are handling This make the function a bit clearer. The middle conditional get no label because we about about to remove it. See next changeset for details. Differential Revision: https://phab.mercurial-scm.org/D9794
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Fri, 15 Jan 2021 23:49:51 +0100
parents f213b250fed0
children 1d6d1a15a963
files mercurial/copies.py
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/mercurial/copies.py	Sat Jan 16 02:18:55 2021 +0100
+++ b/mercurial/copies.py	Fri Jan 15 23:49:51 2021 +0100
@@ -60,13 +60,13 @@
 
     for k, v in list(t.items()):
         # remove copies from files that didn't exist
-        if v not in src:
+        if v not in src:  # case 5
             del t[k]
         # remove criss-crossed copies
         elif k in src and v in dst:
             del t[k]
         # remove copies to files that were then removed
-        elif k not in dst:
+        elif k not in dst:  # case 1
             del t[k]