summaryrefslogtreecommitdiffstats
path: root/lib/bb/event.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2013-05-23 10:49:06 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-05-23 10:57:19 +0100
commit3dc83bbb1bf387bb7ecea2e17f0f72cfccecba92 (patch)
tree980fea17e6457acdd83663a6fd85d08474cb36a6 /lib/bb/event.py
parent7fb95f3d133e440d463d2faa7151c731f8e1ae96 (diff)
downloadbitbake-contrib-3dc83bbb1bf387bb7ecea2e17f0f72cfccecba92.tar.gz
event: Drop Handled/NotHandled status return values
These have long since been deprecated, lets remove them. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'lib/bb/event.py')
-rw-r--r--lib/bb/event.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/lib/bb/event.py b/lib/bb/event.py
index e41455d27..11c063fcc 100644
--- a/lib/bb/event.py
+++ b/lib/bb/event.py
@@ -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