[Python-checkins] cpython: Issue #20472: asyncio: Adjust the note about Mac OS X on PTY, specify that it

victor.stinner python-checkins at python.org
Mon Feb 3 00:37:22 CET 2014


http://hg.python.org/cpython/rev/0a71d29b970a
changeset:   88917:0a71d29b970a
user:        Victor Stinner <victor.stinner at gmail.com>
date:        Mon Feb 03 00:35:46 2014 +0100
summary:
  Issue #20472: asyncio: Adjust the note about Mac OS X on PTY, specify that it
requires at least Mac OS X 10.6.

files:
  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
--- a/Doc/library/asyncio-eventloop.rst
+++ b/Doc/library/asyncio-eventloop.rst
@@ -313,7 +313,8 @@
    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)
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list