# HG changeset patch # User Matt Mackall # Date 2006-10-27 05:38:42 # Node ID 730ca93ed7889404de27533880e5f1b7b0dea1a8 # Parent cd2216599c991702a865d889e387cce977ce7513 convert dict(zip(x,x)) to dict.fromkeys(x) diff --git a/mercurial/cmdutil.py b/mercurial/cmdutil.py --- a/mercurial/cmdutil.py +++ b/mercurial/cmdutil.py @@ -140,7 +140,7 @@ def matchpats(repo, pats=[], opts={}, he def walk(repo, pats=[], opts={}, node=None, head='', badmatch=None): files, matchfn, anypats = matchpats(repo, pats, opts, head) - exact = dict(zip(files, files)) + exact = dict.fromkeys(files) for src, fn in repo.walk(node=node, files=files, match=matchfn, badmatch=badmatch): yield src, fn, util.pathto(repo.getcwd(), fn), fn in exact diff --git a/mercurial/commands.py b/mercurial/commands.py --- a/mercurial/commands.py +++ b/mercurial/commands.py @@ -106,7 +106,7 @@ def walkchangerevs(ui, repo, pats, chang if not slowpath and not files: # No files, no patterns. Display all revs. - wanted = dict(zip(revs, revs)) + wanted = dict.fromkeys(revs) copies = [] if not slowpath: # Only files, no patterns. Check the history of each file. @@ -210,7 +210,7 @@ def walkchangerevs(ui, repo, pats, chang ff = followfilter() stop = min(revs[0], revs[-1]) for x in xrange(rev, stop-1, -1): - if ff.match(x) and wanted.has_key(x): + if ff.match(x) and x in wanted: del wanted[x] def iterate():