diff options
author | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2009-07-09 22:37:22 (GMT) |
---|---|---|
committer | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2009-07-09 22:37:22 (GMT) |
commit | ce32eb7406baf7a51f7764a7c6ce245dd99dabe9 (patch) | |
tree | df9d9312bf0cbf7d2dd962e4b8d2299640af24b5 /Doc/library | |
parent | b0c828ae4a18591b135357c47b1baeecb02f3a5e (diff) | |
download | cpython-ce32eb7406baf7a51f7764a7c6ce245dd99dabe9.zip cpython-ce32eb7406baf7a51f7764a7c6ce245dd99dabe9.tar.gz cpython-ce32eb7406baf7a51f7764a7c6ce245dd99dabe9.tar.bz2 |
#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')
-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 469fbac..7ca9fde 100644 --- a/Doc/library/select.rst +++ b/Doc/library/select.rst @@ -105,7 +105,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 |