mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
selectors: truncate to 80 characters
This commit is contained in:
parent
12985b5da7
commit
53a6d74fbf
1 changed files with 2 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue