diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-01-25 17:24:57 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-01-25 17:24:57 (GMT) |
commit | cfad97b3cad38bde3039169b61c4a28e26631acc (patch) | |
tree | f34984e7c81bca9f1ce6bbc826f84fe2e71e19ce /Doc/whatsnew/3.2.rst | |
parent | da7be3e7b760d604a84c87c64d8eb5077e844dc7 (diff) | |
download | cpython-cfad97b3cad38bde3039169b61c4a28e26631acc.zip cpython-cfad97b3cad38bde3039169b61c4a28e26631acc.tar.gz cpython-cfad97b3cad38bde3039169b61c4a28e26631acc.tar.bz2 |
Fix the description of PIPE_BUF
Diffstat (limited to 'Doc/whatsnew/3.2.rst')
-rw-r--r-- | Doc/whatsnew/3.2.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/whatsnew/3.2.rst b/Doc/whatsnew/3.2.rst index 2bd461e..420173a 100644 --- a/Doc/whatsnew/3.2.rst +++ b/Doc/whatsnew/3.2.rst @@ -1263,9 +1263,9 @@ select ------ The :mod:`select` module now exposes a new, constant attribute, -:attr:`~select.PIPE_BUF`, which gives the minimum number of files that are -guaranteed to not block on a write by the :func:`~select.select` or -:func:`~select.poll` functions. +:attr:`~select.PIPE_BUF`, which gives the minimum number of bytes which are +guaranteed not to block when :func:`select.select` says a pipe is ready +for writing. >>> import select >>> select.PIPE_BUF |