summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/parse/parse_py/BBHandler.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/parse/parse_py/BBHandler.py')
-rw-r--r--bitbake/lib/bb/parse/parse_py/BBHandler.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/parse/parse_py/BBHandler.py b/bitbake/lib/bb/parse/parse_py/BBHandler.py
index 47502adc3c..76deb6b453 100644
--- a/bitbake/lib/bb/parse/parse_py/BBHandler.py
+++ b/bitbake/lib/bb/parse/parse_py/BBHandler.py
@@ -57,7 +57,7 @@ IN_PYTHON_EOF = -9999999999999
57__parsed_methods__ = methodpool.get_parsed_dict() 57__parsed_methods__ = methodpool.get_parsed_dict()
58 58
59# parsing routines, to be moved into AST classes 59# parsing routines, to be moved into AST classes
60def handleMethod(func_name, body, d): 60def handleMethod(func_name, lineno, fn, body, d):
61 if func_name == "__anonymous": 61 if func_name == "__anonymous":
62 funcname = ("__anon_%s_%s" % (lineno, fn.translate(string.maketrans('/.+-', '____')))) 62 funcname = ("__anon_%s_%s" % (lineno, fn.translate(string.maketrans('/.+-', '____'))))
63 if not funcname in methodpool._parsed_fns: 63 if not funcname in methodpool._parsed_fns:
@@ -321,7 +321,7 @@ def feeder(lineno, s, fn, root, d):
321 if __infunc__: 321 if __infunc__:
322 if s == '}': 322 if s == '}':
323 __body__.append('') 323 __body__.append('')
324 handleMethod(__infunc__, __body__, d) 324 handleMethod(__infunc__, lineno, fn, __body__, d)
325 __infunc__ = "" 325 __infunc__ = ""
326 __body__ = [] 326 __body__ = []
327 else: 327 else: