]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/commitdiff
event: Drop Handled/NotHandled status return values
authorRichard Purdie <richard.purdie@linuxfoundation.org>
Thu, 23 May 2013 09:49:06 +0000 (10:49 +0100)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Thu, 23 May 2013 09:57:19 +0000 (10:57 +0100)
These have long since been deprecated, lets remove them.

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
lib/bb/event.py

index e41455d27306d0567c896166a714e8bb80d8cf51..11c063fcc8dd9b351aeb414fefdc1322bdae5452 100644 (file)
@@ -47,9 +47,6 @@ class Event(object):
     def __init__(self):
         self.pid = worker_pid
 
-NotHandled = 0
-Handled    = 1
-
 Registered        = 10
 AlreadyRegistered = 14
 
@@ -58,10 +55,6 @@ _handlers = bb.compat.OrderedDict()
 _ui_handlers = {}
 _ui_handler_seq = 0
 
-# For compatibility
-bb.utils._context["NotHandled"] = NotHandled
-bb.utils._context["Handled"] = Handled
-
 def execute_handler(name, handler, event, d):
     event.data = d
     try:
@@ -80,10 +73,6 @@ def execute_handler(name, handler, event, d):
     finally:
         del event.data
 
-    if ret is not None:
-        warnings.warn("Using Handled/NotHandled in event handlers is deprecated",
-                        DeprecationWarning, stacklevel = 2)
-
 def fire_class_handlers(event, d):
     if isinstance(event, logging.LogRecord):
         return