Mercurial > hg-stable
changeset 8460:d4c545dc6f87
record: use set instead of dict
author | Benoit Boissinot <benoit.boissinot@ens-lyon.org> |
---|---|
date | Sun, 17 May 2009 03:26:08 +0200 |
parents | 1e63816ce8a2 |
children | 88f317e7d280 |
files | hgext/record.py |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/hgext/record.py Sun May 17 03:25:24 2009 +0200 +++ b/hgext/record.py Sun May 17 03:26:08 2009 +0200 @@ -251,7 +251,7 @@ """Interactively filter patch chunks into applied-only chunks""" chunks = list(chunks) chunks.reverse() - seen = {} + seen = set() def consumefile(): """fetch next portion from chunks until a 'header' is seen NB: header == new-file mark @@ -321,7 +321,7 @@ if hdr in seen: consumefile() continue - seen[hdr] = True + seen.add(hdr) if resp_all[0] is None: chunk.pretty(ui) r = prompt(_('examine changes to %s?') %