Mercurial > public > mercurial-scm > hg
diff mercurial/localrepo.py @ 8150:bbc24c0753a0
util: use built-in set and frozenset
This drops Python 2.3 compatibility.
author | Martin Geisler <mg@lazybytes.net> |
---|---|
date | Wed, 22 Apr 2009 00:55:32 +0200 |
parents | dbf20df40eb1 |
children | 127281884959 |
line wrap: on
line diff
--- a/mercurial/localrepo.py Fri Apr 24 10:43:12 2009 +0200 +++ b/mercurial/localrepo.py Wed Apr 22 00:55:32 2009 +0200 @@ -17,7 +17,7 @@ from lock import release class localrepository(repo.repository): - capabilities = util.set(('lookup', 'changegroupsubset')) + capabilities = set(('lookup', 'changegroupsubset')) supported = ('revlogv1', 'store', 'fncache') def __init__(self, parentui, path=None, create=0):