##// END OF EJS Templates
py3: avoid changing dictionary during iteration...
Gregory Szorc -
r36134:c0277161 default
parent child Browse files
Show More
@@ -123,7 +123,7 b' def _chain(src, dst, a, b):'
123 t[k] = v
123 t[k] = v
124
124
125 # remove criss-crossed copies
125 # remove criss-crossed copies
126 for k, v in t.items():
126 for k, v in list(t.items()):
127 if k in src and v in dst:
127 if k in src and v in dst:
128 del t[k]
128 del t[k]
129
129
General Comments 0
You need to be logged in to leave comments. Login now