bitbake: bb.event: handle __builtins__ as a module

Fixes pypy support.

(Bitbake rev: a3e5d9337f5400aab13df63f261e750178f8a661)

Signed-off-by: Christopher Larson <chris_larson@mentor.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Christopher Larson 2016-04-30 12:43:53 -07:00 committed by Richard Purdie
parent 2d2d312188
commit cd20dd057b
1 changed files with 8 additions and 3 deletions

View File

@ -72,11 +72,16 @@ _catchall_handlers = {}
_eventfilter = None
_uiready = False
if hasattr(__builtins__, '__setitem__'):
builtins = __builtins__
else:
builtins = __builtins__.__dict__
def execute_handler(name, handler, event, d):
event.data = d
addedd = False
if 'd' not in __builtins__:
__builtins__['d'] = d
if 'd' not in builtins:
builtins['d'] = d
addedd = True
try:
ret = handler(event)
@ -94,7 +99,7 @@ def execute_handler(name, handler, event, d):
finally:
del event.data
if addedd:
del __builtins__['d']
del builtins['d']
def fire_class_handlers(event, d):
if isinstance(event, logging.LogRecord):