From: Chris Larson Date: Wed, 31 Mar 2010 15:52:41 +0000 (-0700) Subject: Add & utilize a simple_exec utility function X-Git-Tag: 2011-1~5560 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=3995546222c18e5c3ca2d43a843b051e7107ce1c;p=openembedded-core.git Add & utilize a simple_exec utility function (Bitbake rev: 5ead16f14f996bcbb2fb14277b8ce5a9317b8160) Signed-off-by: Chris Larson Signed-off-by: Richard Purdie --- diff --git a/bitbake/lib/bb/event.py b/bitbake/lib/bb/event.py index 8559858f04..f49f71cf71 100644 --- a/bitbake/lib/bb/event.py +++ b/bitbake/lib/bb/event.py @@ -58,7 +58,7 @@ def fire_class_handlers(event, d): event.data = d if type(h).__name__ == "code": locals = {"e": event} - exec h in bb.utils._context, locals + bb.utils.simple_exec(h, locals) bb.utils.better_eval("tmpHandler(e)", locals) else: h(event) diff --git a/bitbake/lib/bb/utils.py b/bitbake/lib/bb/utils.py index 50e9402a2b..2e3937ec12 100644 --- a/bitbake/lib/bb/utils.py +++ b/bitbake/lib/bb/utils.py @@ -222,6 +222,9 @@ def better_exec(code, context, text, realfile): raise +def simple_exec(code, context): + exec code in _context, context + def better_eval(source, locals): return eval(source, _context, locals)