diff mercurial/sshrepo.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 4a4c7f6a5912
children 344751cd8cb8
line wrap: on
line diff
--- a/mercurial/sshrepo.py	Fri Apr 24 10:43:12 2009 +0200
+++ b/mercurial/sshrepo.py	Wed Apr 22 00:55:32 2009 +0200
@@ -80,7 +80,7 @@
         else:
             self.abort(error.RepoError(_("no suitable response from remote hg")))
 
-        self.capabilities = util.set()
+        self.capabilities = set()
         lines.reverse()
         for l in lines:
             if l.startswith("capabilities:"):