mercurial/revset.py
changeset 20452 a685d9870eb5
parent 20451 ac7cebf45eb4
child 20453 6aa7dcae6bd8
--- a/mercurial/revset.py	Mon Feb 03 16:15:25 2014 -0800
+++ b/mercurial/revset.py	Thu Jan 30 15:39:56 2014 -0800
@@ -590,12 +590,12 @@
     """
     # i18n: "desc" is a keyword
     ds = encoding.lower(getstring(x, _("desc requires a string")))
-    l = []
-    for r in subset:
-        c = repo[r]
-        if ds in encoding.lower(c.description()):
-            l.append(r)
-    return baseset(l)
+
+    def matches(x):
+        c = repo[x]
+        return ds in encoding.lower(c.description())
+
+    return lazyset(subset, matches)
 
 def _descendants(repo, subset, x, followfirst=False):
     args = getset(repo, baseset(repo), x)