From 436a4b3b3cfc6f901c66fe79b4f0828149a4312e Mon Sep 17 00:00:00 2001 From: David Wilson Date: Thu, 8 Aug 2019 20:08:51 +0000 Subject: [PATCH] docs: tidy up Select.all() --- mitogen/select.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/mitogen/select.py b/mitogen/select.py index f880fcc3..3875042b 100644 --- a/mitogen/select.py +++ b/mitogen/select.py @@ -122,9 +122,10 @@ class Select(object): @classmethod def all(cls, receivers): """ - Take an iterable of receivers and retrieve a :class:`Message` from - each, returning the result of calling `msg.unpickle()` on each in turn. - Results are returned in the order they arrived. + Take an iterable of receivers and retrieve a :class:`Message + ` from each, returning the result of calling + :meth:`Message.unpickle() ` on each in + turn. Results are returned in the order they arrived. This is sugar for handling batch :meth:`Context.call_async ` invocations: