From 431160caf1fffaf223d50ef6239d666f69b0e4a4 Mon Sep 17 00:00:00 2001
From: Chris Larson <chris_larson@mentor.com>
Date: Tue, 23 Nov 2010 15:30:23 -0700
Subject: taskdata: use 'any' in re_match_strings

(Bitbake rev: e48e9a2150ee76aaf151f6d5bc9e86e6ae4de514)

Signed-off-by: Chris Larson <chris_larson@mentor.com>
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
---
 bitbake/lib/bb/taskdata.py | 10 +++-------
 1 file changed, 3 insertions(+), 7 deletions(-)

(limited to 'bitbake/lib/bb')

diff --git a/bitbake/lib/bb/taskdata.py b/bitbake/lib/bb/taskdata.py
index fdd55ee83..d2a350578 100644
--- a/bitbake/lib/bb/taskdata.py
+++ b/bitbake/lib/bb/taskdata.py
@@ -24,6 +24,7 @@ Task data collection and handling
 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 
 import logging
+import re
 import bb
 
 logger = logging.getLogger("BitBake.TaskData")
@@ -33,13 +34,8 @@ def re_match_strings(target, strings):
     Whether or not the string 'target' matches
     any one string of the strings which can be regular expression string
     """
-    import re
-
-    for name in strings:
-        if (name==target or
-                re.search(name, target)!=None):
-            return True
-    return False
+    return any(name == target or re.search(name, target) != None
+               for name in strings)
 
 class TaskData:
     """
-- 
cgit v1.2.3