Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 902f320 commit da7be3eCopy full SHA for da7be3e
1 file changed
Doc/library/select.rst
@@ -96,9 +96,11 @@ The module defines the following:
96
97
.. attribute:: select.PIPE_BUF
98
99
- Files reported as ready for writing by :func:`select`, :func:`poll` or
100
- similar interfaces in this module are guaranteed to not block on a write
101
- of up to :const:`PIPE_BUF` bytes.
+ The minimum number of bytes which can be written without blocking to a pipe
+ when the pipe has been reported as ready for writing by :func:`select`,
+ :func:`poll` or another interface in this module. This doesn't apply
102
+ to other kind of file-like objects such as sockets.
103
+
104
This value is guaranteed by POSIX to be at least 512. Availability: Unix.
105
106
.. versionadded:: 3.2
0 commit comments