diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2014-02-02 23:35:46 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2014-02-02 23:35:46 (GMT) |
commit | 3bc647c0faa7e7d3abb1412cc4e5e6a5566eed9f (patch) | |
tree | 6c85b766a8d41954540a92c0b4f7bc0a0223b065 /Doc | |
parent | 9dd39f524df06a27b7877bfe96c35537798cb0af (diff) | |
download | cpython-3bc647c0faa7e7d3abb1412cc4e5e6a5566eed9f.zip cpython-3bc647c0faa7e7d3abb1412cc4e5e6a5566eed9f.tar.gz cpython-3bc647c0faa7e7d3abb1412cc4e5e6a5566eed9f.tar.bz2 |
Issue #20472: asyncio: Adjust the note about Mac OS X on PTY, specify that it
requires at least Mac OS X 10.6.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/asyncio-eventloop.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/library/asyncio-eventloop.rst b/Doc/library/asyncio-eventloop.rst index aac5a94..6c3c2df 100644 --- a/Doc/library/asyncio-eventloop.rst +++ b/Doc/library/asyncio-eventloop.rst @@ -313,7 +313,8 @@ Run subprocesses asynchronously using the :mod:`subprocess` module. On Mac OS X older than 10.9 (Mavericks), :class:`selectors.KqueueSelector` does not support character devices like PTY, whereas it is used by the default event loop. The :class:`SelectorEventLoop` can be used with - :class:`SelectSelector` to handle character devices. + :class:`SelectSelector` or :class:`PollSelector` to handle character devices + on Mac OS X 10.6 (Snow Leopard) and later. .. method:: BaseEventLoop.subprocess_exec(protocol_factory, \*args, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE, universal_newlines=False, shell=False, bufsize=0, \*\*kwargs) |