##// END OF EJS Templates
localrepo: forcibly copy list of filecache keys...
localrepo: forcibly copy list of filecache keys On Python 3, keys() is more like iterkeys(), so we got in trouble for mutating the dict while we're iterating here. Since the list of caches should be relatively small, work around this difference by just forcing a copy of the key list.
Augie Fackler -
r31510:2244fb3e default
Show More