]> granicus.if.org Git - python/commitdiff
selectors: truncate to 80 characters
authorVictor Stinner <victor.stinner@gmail.com>
Thu, 8 Jan 2015 23:13:39 +0000 (00:13 +0100)
committerVictor Stinner <victor.stinner@gmail.com>
Thu, 8 Jan 2015 23:13:39 +0000 (00:13 +0100)
Lib/selectors.py

index faa2d3da30bf8f671d80ac28767f77784a7d1615..598845d43b02e9165ef35ae3f9826a66fcba2bfd 100644 (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