Issue #16853: Mention the new selectors module in the select module

This commit is contained in:
Victor Stinner 2013-09-04 20:40:13 +02:00
parent 35262a405c
commit 73821c47dc
1 changed files with 8 additions and 0 deletions

View File

@ -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: