diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2013-09-04 18:40:13 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2013-09-04 18:40:13 (GMT) |
commit | 73821c47dcf56b02a30ab9ab524f0c0fc2875c22 (patch) | |
tree | 855c78efa76f4973f1708df94663fa9c433abc4d /Doc/library/select.rst | |
parent | 35262a405c8b07ce325aa300c5cb7eb1847aeb6c (diff) | |
download | cpython-73821c47dcf56b02a30ab9ab524f0c0fc2875c22.zip cpython-73821c47dcf56b02a30ab9ab524f0c0fc2875c22.tar.gz cpython-73821c47dcf56b02a30ab9ab524f0c0fc2875c22.tar.bz2 |
Issue #16853: Mention the new selectors module in the select module
Diffstat (limited to 'Doc/library/select.rst')
-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: |