parse.ast: drop __word__ regular expression

We can use the string split method for this instead.

(Bitbake rev: aa9646717b3ee1006628246a7c495f601e62391c)

Signed-off-by: Chris Larson <chris_larson@mentor.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Chris Larson 2011-01-04 13:07:27 -07:00 committed by Richard Purdie
parent 1204ed79fc
commit 37391f667f
1 changed files with 3 additions and 4 deletions

View File

@ -31,7 +31,6 @@ import itertools
from bb import methodpool
from bb.parse import logger
__word__ = re.compile(r"\S+")
__parsed_methods__ = bb.methodpool.get_parsed_dict()
_bbversions_re = re.compile(r"\[(?P<from>[0-9]+)-(?P<to>[0-9]+)\]")
@ -180,7 +179,7 @@ class MethodFlagsNode(AstNode):
class ExportFuncsNode(AstNode):
def __init__(self, fns, classes):
self.n = __word__.findall(fns)
self.n = fns.split()
self.classes = classes
def eval(self, data):
@ -250,7 +249,7 @@ class AddTaskNode(AstNode):
class BBHandlerNode(AstNode):
def __init__(self, fns):
self.hs = __word__.findall(fns)
self.hs = fns.split()
def eval(self, data):
bbhands = bb.data.getVar('__BBHANDLERS', data) or []
@ -301,7 +300,7 @@ def handleBBHandlers(statements, m):
def handleInherit(statements, m):
classes = m.group(1)
statements.append(InheritNode(__word__.findall(classes)))
statements.append(InheritNode(classes.split()))
def finalize(fn, d, variant = None):
for lazykey in bb.data.getVar("__lazy_assigned", d) or ():