equal
deleted
inserted
replaced
69 testedwith = 'ships-with-hg-core' |
69 testedwith = 'ships-with-hg-core' |
70 |
70 |
71 cmdtable = {} |
71 cmdtable = {} |
72 command = cmdutil.command(cmdtable) |
72 command = cmdutil.command(cmdtable) |
73 |
73 |
74 newfile = set(('new fi', 'rename', 'copy f', 'copy t')) |
74 newfile = {'new fi', 'rename', 'copy f', 'copy t'} |
75 |
75 |
76 def zerodict(): |
76 def zerodict(): |
77 return collections.defaultdict(lambda: 0) |
77 return collections.defaultdict(lambda: 0) |
78 |
78 |
79 def roundto(x, k): |
79 def roundto(x, k): |
334 return ' '.join(l) |
334 return ' '.join(l) |
335 |
335 |
336 wlock = repo.wlock() |
336 wlock = repo.wlock() |
337 lock = repo.lock() |
337 lock = repo.lock() |
338 |
338 |
339 nevertouch = set(('.hgsub', '.hgignore', '.hgtags')) |
339 nevertouch = {'.hgsub', '.hgignore', '.hgtags'} |
340 |
340 |
341 progress = ui.progress |
341 progress = ui.progress |
342 _synthesizing = _('synthesizing') |
342 _synthesizing = _('synthesizing') |
343 _files = _('initial files') |
343 _files = _('initial files') |
344 _changesets = _('changesets') |
344 _changesets = _('changesets') |