diff options
author | Guido van Rossum <guido@python.org> | 2014-05-05 07:35:29 -0700 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2014-05-05 07:35:29 -0700 |
commit | a4790965f477a77daff6a0c04aabdb2a6a51a239 (patch) | |
tree | 9efc71202f36592bb3861fec47c935dafbd987ff | |
parent | f19a40071479eef0c8c65cb900d2cecbe00a72f1 (diff) | |
parent | 5280d2e399faeeb70d9738b83d406dc1cb361663 (diff) | |
download | cpython-git-a4790965f477a77daff6a0c04aabdb2a6a51a239.tar.gz |
Merge 3.4->default: asyncio docs: ProactorEventLoop does not support SSL.
-rw-r--r-- | Doc/library/asyncio-subprocess.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/asyncio-subprocess.rst b/Doc/library/asyncio-subprocess.rst index b387543176..5b4ede61f6 100644 --- a/Doc/library/asyncio-subprocess.rst +++ b/Doc/library/asyncio-subprocess.rst @@ -8,7 +8,7 @@ Operating system support On Windows, the default event loop uses :class:`selectors.SelectSelector` which only supports sockets. The :class:`ProactorEventLoop` should be used to -support subprocesses. +support subprocesses. However, the latter does not support SSL. 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 |