D2238: narrowmerge: iterate over a copy of dict items so we can mutate the dict
durin42 (Augie Fackler)
phabricator at mercurial-scm.org
Tue Feb 13 23:13:56 UTC 2018
durin42 created this revision.
Herald added a subscriber: mercurial-devel.
Herald added a reviewer: hg-reviewers.
REPOSITORY
rHG Mercurial
REVISION DETAIL
https://phab.mercurial-scm.org/D2238
AFFECTED FILES
hgext/narrow/narrowmerge.py
CHANGE DETAILS
diff --git a/hgext/narrow/narrowmerge.py b/hgext/narrow/narrowmerge.py
--- a/hgext/narrow/narrowmerge.py
+++ b/hgext/narrow/narrowmerge.py
@@ -28,7 +28,9 @@
nooptypes = set(['k']) # TODO: handle with nonconflicttypes
nonconflicttypes = set('a am c cm f g r e'.split())
narrowmatch = repo.narrowmatch()
- for f, action in actions.items():
+ # We mutate the items in the dict during iteration, so iterate
+ # over a copy.
+ for f, action in list(actions.items()):
if narrowmatch(f):
pass
elif not branchmerge:
To: durin42, #hg-reviewers
Cc: mercurial-devel
More information about the Mercurial-devel
mailing list