Add docstrings for base executor class

Avoiding spurious missed lines in coverage report.
This commit is contained in:
Mark McLoughlin 2013-06-15 21:20:26 +01:00
parent de88d62998
commit 0fc785267f
1 changed files with 3 additions and 3 deletions

View File

@ -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."