aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bb/parse/ast.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2012-08-22 13:54:47 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-08-23 08:48:53 +0100
commit2e98f740b4a57a3467b1a00b1ebc1aaee33a8ff0 (patch)
treed2a71acde9a95d634a1c3cbf7979ffe00cd39869 /lib/bb/parse/ast.py
parent79f9f46319de85f85613ebe248c327f5852225ba (diff)
downloadbitbake-2e98f740b4a57a3467b1a00b1ebc1aaee33a8ff0.tar.gz
ast: Extract text variable in PythonMethodNode
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'lib/bb/parse/ast.py')
-rw-r--r--lib/bb/parse/ast.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/bb/parse/ast.py b/lib/bb/parse/ast.py
index b7eaff1c6..dfc0b0224 100644
--- a/lib/bb/parse/ast.py
+++ b/lib/bb/parse/ast.py
@@ -125,17 +125,18 @@ class MethodNode(AstNode):
self.body = body
def eval(self, data):
+ text = '\n'.join(self.body)
if self.func_name == "__anonymous":
funcname = ("__anon_%s_%s" % (self.lineno, self.filename.translate(string.maketrans('/.+-', '____'))))
if not funcname in bb.methodpool._parsed_fns:
- text = "def %s(d):\n" % (funcname) + '\n'.join(self.body)
+ text = "def %s(d):\n" % (funcname) + text
bb.methodpool.insert_method(funcname, text, self.filename)
anonfuncs = data.getVar('__BBANONFUNCS') or []
anonfuncs.append(funcname)
data.setVar('__BBANONFUNCS', anonfuncs)
else:
data.setVarFlag(self.func_name, "func", 1)
- data.setVar(self.func_name, '\n'.join(self.body))
+ data.setVar(self.func_name, text)
class PythonMethodNode(AstNode):
def __init__(self, filename, lineno, function, modulename, body):