* [PATCH] event: Drop Handled/NotHandled status return values
@ 2013-05-23 9:49 Richard Purdie
0 siblings, 0 replies; only message in thread
From: Richard Purdie @ 2013-05-23 9:49 UTC (permalink / raw)
To: bitbake-devel
These have long since been deprecated, lets remove them.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
---
diff --git a/bitbake/lib/bb/event.py b/bitbake/lib/bb/event.py
index e41455d..11c063f 100644
--- a/bitbake/lib/bb/event.py
+++ b/bitbake/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
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2013-05-23 9:49 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-05-23 9:49 [PATCH] event: Drop Handled/NotHandled status return values Richard Purdie
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.