diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2015-01-09 14:59:44 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2015-01-09 14:59:44 (GMT) |
commit | 7eb10311be26e8f353530ed79476d4c859243401 (patch) | |
tree | 7191a8dcb75d884e5205ff2724a8fcbc9cfc91e5 | |
parent | a092a615f5243a68c01e9a9233283f6cccb3b03e (diff) | |
download | cpython-7eb10311be26e8f353530ed79476d4c859243401.zip cpython-7eb10311be26e8f353530ed79476d4c859243401.tar.gz cpython-7eb10311be26e8f353530ed79476d4c859243401.tar.bz2 |
asyncio: SelectSelector is limited to 512 sockets on Windows
-rw-r--r-- | 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 index e891ed1..afb8b9f 100644 --- a/Doc/library/asyncio-eventloops.rst +++ b/Doc/library/asyncio-eventloops.rst @@ -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 |