summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2015-01-08 23:13:39 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2015-01-08 23:13:39 (GMT)
commit53a6d74fbf3136652ad284f636ff9576f030007e (patch)
treeaa346445b8db9f38bdfa559842e029e629ccc0a6
parent12985b5da76d7737a79e471f96ee05303bf1ea25 (diff)
downloadcpython-53a6d74fbf3136652ad284f636ff9576f030007e.zip
cpython-53a6d74fbf3136652ad284f636ff9576f030007e.tar.gz
cpython-53a6d74fbf3136652ad284f636ff9576f030007e.tar.bz2
selectors: truncate to 80 characters
-rw-r--r--Lib/selectors.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/selectors.py b/Lib/selectors.py
index faa2d3d..598845d4 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