]> granicus.if.org Git - python/commitdiff
Issue #20472: asyncio: Adjust the note about Mac OS X on PTY, specify that it
authorVictor Stinner <victor.stinner@gmail.com>
Sun, 2 Feb 2014 23:35:46 +0000 (00:35 +0100)
committerVictor Stinner <victor.stinner@gmail.com>
Sun, 2 Feb 2014 23:35:46 +0000 (00:35 +0100)
requires at least Mac OS X 10.6.

Doc/library/asyncio-eventloop.rst

index aac5a9451a75f4ccf04b61e6857047bbb3a0f86b..6c3c2df7cc54b51df89c4171fb6abb748aa51548 100644 (file)
@@ -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)