summaryrefslogtreecommitdiff
path: root/Lib/selectors.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/selectors.py')
-rw-r--r--Lib/selectors.py3
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