[Python-checkins] cpython (3.4): asyncio: SelectSelector is limited to 512 sockets on Windows

victor.stinner python-checkins at python.org
Fri Jan 9 16:00:50 CET 2015


https://hg.python.org/cpython/rev/75d7f29487ce
changeset:   94089:75d7f29487ce
branch:      3.4
user:        Victor Stinner <victor.stinner at gmail.com>
date:        Fri Jan 09 15:59:44 2015 +0100
summary:
  asyncio: SelectSelector is limited to 512 sockets on Windows

files:
  Doc/library/asyncio-eventloops.rst |  3 ++-
  1 files changed, 2 insertions(+), 1 deletions(-)


diff --git a/Doc/library/asyncio-eventloops.rst b/Doc/library/asyncio-eventloops.rst
--- a/Doc/library/asyncio-eventloops.rst
+++ b/Doc/library/asyncio-eventloops.rst
@@ -87,7 +87,8 @@
 
 :class:`SelectorEventLoop` specific limits:
 
-- :class:`~selectors.SelectSelector` is used but it only supports sockets
+- :class:`~selectors.SelectSelector` is used which only supports sockets
+  and is limited to 512 sockets.
 - :meth:`~BaseEventLoop.add_reader` and :meth:`~BaseEventLoop.add_writer` only
   accept file descriptors of sockets
 - Pipes are not supported

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


More information about the Python-checkins mailing list