mercurial/util.py
branchstable
changeset 10487 7a6b5f85c3ab
parent 10438 e6dc44147234
child 10756 cb681cc59a8d
child 10789 1b45468d3deb
--- 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