diff options
author | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2009-07-09 22:44:11 (GMT) |
---|---|---|
committer | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2009-07-09 22:44:11 (GMT) |
commit | ace3102131b29081119050dff4e229a58a487976 (patch) | |
tree | e500a0daf5fc247676d427033571f49d7d556e6f /Doc/library/select.rst | |
parent | 414c91f7e4917657806e6f80ad19cc752907ff2c (diff) | |
download | cpython-ace3102131b29081119050dff4e229a58a487976.zip cpython-ace3102131b29081119050dff4e229a58a487976.tar.gz cpython-ace3102131b29081119050dff4e229a58a487976.tar.bz2 |
Merged revisions 73916 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r73916 | amaury.forgeotdarc | 2009-07-10 00:37:22 +0200 (ven., 10 juil. 2009) | 5 lines
#6416: Fix compilation of the select module on Windows, as well as test_subprocess:
PIPE_BUF is not defined on Windows, and probably has no meaning there.
Anyway the subprocess module uses another way to perform non-blocking reads (with a thread)
........
Diffstat (limited to 'Doc/library/select.rst')
-rw-r--r-- | Doc/library/select.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/select.rst b/Doc/library/select.rst index bffb9cb..eea442b 100644 --- a/Doc/library/select.rst +++ b/Doc/library/select.rst @@ -99,7 +99,7 @@ The module defines the following: Files reported as ready for writing by :func:`select`, :func:`poll` or similar interfaces in this module are guaranteed to not block on a write of up to :const:`PIPE_BUF` bytes. - This value is guaranteed by POSIX to be at least 512. + This value is guaranteed by POSIX to be at least 512. Availability: Unix. .. versionadded:: 2.7 |