util: use the built-in any() and all() methods if they are available stable
authorSteve Losh <steve@stevelosh.com>
Tue, 16 Feb 2010 09:31:35 -0500
branchstable
changeset 10487 7a6b5f85c3ab
parent 10486 6b354a763617
child 10489 3232dba5d521
util: use the built-in any() and all() methods if they are available
mercurial/util.py
--- a/mercurial/util.py	Mon Feb 15 21:18:16 2010 -0600
+++ b/mercurial/util.py	Tue Feb 16 09:31:35 2010 -0500
@@ -1343,14 +1343,17 @@
         if prevhandler is not None:
             signal.signal(signal.SIGCHLD, prevhandler)
 
-def any(iterable):
-    for i in iterable:
-        if i:
-            return True
-    return False
+try:
+    any, all = any, all
+except NameError:
+    def any(iterable):
+        for i in iterable:
+            if i:
+                return True
+        return False
 
-def all(iterable):
-    for i in iterable:
-        if not i:
-            return False
-    return True
+    def all(iterable):
+        for i in iterable:
+            if not i:
+                return False
+        return True