[Python-checkins] cpython: selectors: truncate to 80 characters

victor.stinner python-checkins at python.org
Fri Jan 9 00:14:04 CET 2015


https://hg.python.org/cpython/rev/e86d0ef45e21
changeset:   94082:e86d0ef45e21
user:        Victor Stinner <victor.stinner at gmail.com>
date:        Fri Jan 09 00:13:39 2015 +0100
summary:
  selectors: truncate to 80 characters

files:
  Lib/selectors.py |  3 ++-
  1 files changed, 2 insertions(+), 1 deletions(-)


diff --git a/Lib/selectors.py b/Lib/selectors.py
--- a/Lib/selectors.py
+++ b/Lib/selectors.py
@@ -576,7 +576,8 @@
             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

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list