diff options
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/select.rst | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Doc/library/select.rst b/Doc/library/select.rst index 02ce775..524e411 100644 --- a/Doc/library/select.rst +++ b/Doc/library/select.rst @@ -14,6 +14,14 @@ it also works for other file types (in particular, on Unix, it works on pipes). It cannot be used on regular files to determine whether a file has grown since it was last read. +.. note:: + + The :mod:`selectors` module allows high-level and efficient I/O + multiplexing, built upon the :mod:`select` module primitives. Users are + encouraged to use the :mod:`selectors` module instead, unless they want + precise control over the OS-level primitives used. + + The module defines the following: |