]> granicus.if.org Git - python/commitdiff
asyncio: SelectSelector is limited to 512 sockets on Windows
authorVictor Stinner <victor.stinner@gmail.com>
Fri, 9 Jan 2015 14:59:44 +0000 (15:59 +0100)
committerVictor Stinner <victor.stinner@gmail.com>
Fri, 9 Jan 2015 14:59:44 +0000 (15:59 +0100)
Doc/library/asyncio-eventloops.rst

index e891ed1711b15278699c679dc52d8aa1736af8f9..afb8b9f35b447f253b1247216cf2335644cc26ce 100644 (file)
@@ -87,7 +87,8 @@ Common limits of Windows event loops:
 
 :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