diff hgext/graphlog.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 553aa0cbeab6
children f3abe032fc89
line wrap: on
line diff
--- a/hgext/graphlog.py	Fri Apr 24 10:43:12 2009 +0200
+++ b/hgext/graphlog.py	Wed Apr 22 00:55:32 2009 +0200
@@ -286,7 +286,7 @@
 
 def graphrevs(repo, nodes, opts):
     nodes.reverse()
-    include = util.set(nodes)
+    include = set(nodes)
     limit = cmdutil.loglimit(opts)
     count = 0
     for node in nodes: