selectors: truncate to 80 characters

This commit is contained in:
Victor Stinner 2015-01-09 00:13:39 +01:00
parent 12985b5da7
commit 53a6d74fbf

View file

@ -576,7 +576,8 @@ def close(self):
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