diff options
author | Guido van Rossum <guido@python.org> | 1994-01-02 01:22:07 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1994-01-02 01:22:07 (GMT) |
commit | 5fdeeeae2a12b9956cc84d62eae82f72cabc8664 (patch) | |
tree | ac0053479e10099850c8e0d06e31cb3afbf632bb /Doc/libselect.tex | |
parent | 0b0719866e8a32d0a787e73bca9e79df1d1a74f8 (diff) | |
download | cpython-5fdeeeae2a12b9956cc84d62eae82f72cabc8664.zip cpython-5fdeeeae2a12b9956cc84d62eae82f72cabc8664.tar.gz cpython-5fdeeeae2a12b9956cc84d62eae82f72cabc8664.tar.bz2 |
Restructured library documentation
Diffstat (limited to 'Doc/libselect.tex')
-rw-r--r-- | Doc/libselect.tex | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/Doc/libselect.tex b/Doc/libselect.tex new file mode 100644 index 0000000..d47face --- /dev/null +++ b/Doc/libselect.tex @@ -0,0 +1,42 @@ +\section{Built-in module \sectcode{select}} +\bimodindex{select} + +This module provides access to the function \code{select} available in +most \UNIX{} versions. It defines the following: + +\renewcommand{\indexsubitem}{(in module select)} +\begin{excdesc}{error} +The exception raised when an error occurs. The accompanying value is +a pair containing the numeric error code from \code{errno} and the +corresponding string, as would be printed by the C function +\code{perror()}. +\end{excdesc} + +\begin{funcdesc}{select}{iwtd\, owtd\, ewtd\, timeout} +This is a straightforward interface to the \UNIX{} \code{select()} +system call. The first three arguments are lists of `waitable +objects': either integers representing \UNIX{} file descriptors or +objects with a parameterless method named \code{fileno()} returning +such an integer. The three lists of waitable objects are for input, +output and `exceptional conditions', respectively. Empty lists are +allowed. The optional last argument is a time-out specified as a +floating point number in seconds. When the \var{timeout} argument +is omitted the function blocks until at least one file descriptor is +ready. A time-out value of zero specifies a poll and never blocks. + +The return value is a triple of lists of objects that are ready: +subsets of the first three arguments. When the time-out is reached +without a file descriptor becoming ready, three empty lists are +returned. + +Amongst the acceptable object types in the lists are Python file +objects (e.g. \code{sys.stdin}, or objects returned by \code{open()} +or \code{posix.popen()}), socket objects returned by +\code{socket.socket()}, and the module \code{stdwin} which happens to +define a function \code{fileno()} for just this purpose. You may +also define a \dfn{wrapper} class yourself, as long as it has an +appropriate \code{fileno()} method (that really returns a \UNIX{} file +descriptor, not just a random integer). +\end{funcdesc} +\ttindex{socket} +\ttindex{stdwin} |