]> granicus.if.org Git - python/commitdiff
Issue #16853: Mention the new selectors module in the select module
authorVictor Stinner <victor.stinner@gmail.com>
Wed, 4 Sep 2013 18:40:13 +0000 (20:40 +0200)
committerVictor Stinner <victor.stinner@gmail.com>
Wed, 4 Sep 2013 18:40:13 +0000 (20:40 +0200)
Doc/library/select.rst

index 02ce775461bbac828abd13bfa5323c7d2fb742d7..524e411f2cc36c026acafa3b924adcc6b1c88f4e 100644 (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: