summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2015-01-09 00:13:35 +0100
committerVictor Stinner <victor.stinner@gmail.com>2015-01-09 00:13:35 +0100
commit73a5c0c24bf42bc3d9ca5d8fb7fb91c127e34139 (patch)
treea98e734385a17c464d1d09c9f80896cbbb49d14f
parentbc2b6d110b2f6ca0645cb2503652dc19bfc4a9c1 (diff)
downloadtrollius-73a5c0c24bf42bc3d9ca5d8fb7fb91c127e34139.tar.gz
selectors: truncate to 80 characters
-rw-r--r--asyncio/selectors.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/asyncio/selectors.py b/asyncio/selectors.py
index faa2d3d..598845d 100644
--- a/asyncio/selectors.py
+++ b/asyncio/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