summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2013-09-04 20:40:13 +0200
committerVictor Stinner <victor.stinner@gmail.com>2013-09-04 20:40:13 +0200
commit73821c47dcf56b02a30ab9ab524f0c0fc2875c22 (patch)
tree855c78efa76f4973f1708df94663fa9c433abc4d
parent35262a405c8b07ce325aa300c5cb7eb1847aeb6c (diff)
downloadcpython-git-73821c47dcf56b02a30ab9ab524f0c0fc2875c22.tar.gz
Issue #16853: Mention the new selectors module in the select module
-rw-r--r--Doc/library/select.rst8
1 files changed, 8 insertions, 0 deletions
diff --git a/Doc/library/select.rst b/Doc/library/select.rst
index 02ce775461..524e411f2c 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: