selectors: truncate to 80 characters

This commit is contained in:
Victor Stinner 2015-01-09 00:13:39 +01:00
parent 12985b5da7
commit 53a6d74fbf
1 changed files with 2 additions and 1 deletions

View File

@ -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