diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2015-01-08 23:13:39 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2015-01-08 23:13:39 (GMT) |
commit | 53a6d74fbf3136652ad284f636ff9576f030007e (patch) | |
tree | aa346445b8db9f38bdfa559842e029e629ccc0a6 /Lib/selectors.py | |
parent | 12985b5da76d7737a79e471f96ee05303bf1ea25 (diff) | |
download | cpython-53a6d74fbf3136652ad284f636ff9576f030007e.zip cpython-53a6d74fbf3136652ad284f636ff9576f030007e.tar.gz cpython-53a6d74fbf3136652ad284f636ff9576f030007e.tar.bz2 |
selectors: truncate to 80 characters
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 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 |