diff options
Diffstat (limited to 'Lib/selectors.py')
-rw-r--r-- | Lib/selectors.py | 3 |
1 files changed, 2 insertions, 1 deletions
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 |