From 3bc647c0faa7e7d3abb1412cc4e5e6a5566eed9f Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Mon, 3 Feb 2014 00:35:46 +0100 Subject: Issue #20472: asyncio: Adjust the note about Mac OS X on PTY, specify that it requires at least Mac OS X 10.6. --- Doc/library/asyncio-eventloop.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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) -- cgit v0.12