asyncio: SelectSelector is limited to 512 sockets on Windows

This commit is contained in:
Victor Stinner 2015-01-09 15:59:44 +01:00
parent a092a615f5
commit 7eb10311be

View 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