Commit 3bc647c0 authored by Victor Stinner's avatar Victor Stinner

Issue #20472: asyncio: Adjust the note about Mac OS X on PTY, specify that it

requires at least Mac OS X 10.6.
parent 9dd39f52
......@@ -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)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment