selectors: truncate to 80 characters
This commit is contained in:
parent
12985b5da7
commit
53a6d74fbf
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue