Mercurial > public > mercurial-scm > hg
comparison mercurial/copies.py @ 30046:cfdbada917cd
copies: style fixes and add comment
author | G?bor Stefanik <gabor.stefanik@nng.com> |
---|---|
date | Mon, 03 Oct 2016 13:18:31 +0200 |
parents | 12cac1e4d6d9 |
children | d13a7c8bf0a5 |
comparison
equal
deleted
inserted
replaced
30045:12cac1e4d6d9 | 30046:cfdbada917cd |
---|---|
329 | 329 |
330 m1 = c1.manifest() | 330 m1 = c1.manifest() |
331 m2 = c2.manifest() | 331 m2 = c2.manifest() |
332 ma = ca.manifest() | 332 ma = ca.manifest() |
333 | 333 |
334 copy1, copy2, = {}, {} | 334 # see checkcopies documentation below for these dicts |
335 copy1, copy2 = {}, {} | |
335 movewithdir1, movewithdir2 = {}, {} | 336 movewithdir1, movewithdir2 = {}, {} |
336 fullcopy1, fullcopy2 = {}, {} | 337 fullcopy1, fullcopy2 = {}, {} |
337 diverge = {} | 338 diverge = {} |
338 | 339 |
339 # find interesting file sets from manifests | 340 # find interesting file sets from manifests |