From: Victor Stinner Date: Thu, 8 Jan 2015 23:13:39 +0000 (+0100) Subject: selectors: truncate to 80 characters X-Git-Tag: v3.5.0a1~211 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=53a6d74fbf3136652ad284f636ff9576f030007e;p=python selectors: truncate to 80 characters --- diff --git a/Lib/selectors.py b/Lib/selectors.py index faa2d3da30..598845d43b 100644 --- a/Lib/selectors.py +++ b/Lib/selectors.py @@ -576,7 +576,8 @@ if hasattr(select, 'kqueue'): super().close() -# Choose the best implementation: roughly, epoll|kqueue|devpoll > poll > select. +# Choose the best implementation, roughly: +# epoll|kqueue|devpoll > poll > select. # select() also can't accept a FD > FD_SETSIZE (usually around 1024) if 'KqueueSelector' in globals(): DefaultSelector = KqueueSelector