diff options
| author | Victor Stinner <victor.stinner@gmail.com> | 2015-01-09 00:13:35 +0100 |
|---|---|---|
| committer | Victor Stinner <victor.stinner@gmail.com> | 2015-01-09 00:13:35 +0100 |
| commit | 9dc23dffa3f1060d386d27516ec8faedbf75ba7d (patch) | |
| tree | a98e734385a17c464d1d09c9f80896cbbb49d14f /asyncio/selectors.py | |
| parent | 9d4323861f0e3a69018f0b7ad00a99b0e6663835 (diff) | |
| download | trollius-git-9dc23dffa3f1060d386d27516ec8faedbf75ba7d.tar.gz | |
selectors: truncate to 80 characters
Diffstat (limited to 'asyncio/selectors.py')
| -rw-r--r-- | asyncio/selectors.py | 3 |
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 |
