From 0fc785267f2a9fc59641a4c80c7c4a549ffc4ec9 Mon Sep 17 00:00:00 2001 From: Mark McLoughlin Date: Sat, 15 Jun 2013 21:20:26 +0100 Subject: [PATCH] Add docstrings for base executor class Avoiding spurious missed lines in coverage report. --- oslo/messaging/_executors/base.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/oslo/messaging/_executors/base.py b/oslo/messaging/_executors/base.py index fffea9fd1..5d131e9f6 100644 --- a/oslo/messaging/_executors/base.py +++ b/oslo/messaging/_executors/base.py @@ -46,12 +46,12 @@ class ExecutorBase(object): @abc.abstractmethod def start(self): - pass + "Start polling for incoming messages." @abc.abstractmethod def stop(self): - pass + "Stop polling for messages." @abc.abstractmethod def wait(self): - pass + "Wait until the executor has stopped polling."