diff options
author | Charles-François Natali <cf.natali@gmail.com> | 2013-09-04 17:02:49 (GMT) |
---|---|---|
committer | Charles-François Natali <cf.natali@gmail.com> | 2013-09-04 17:02:49 (GMT) |
commit | 243d8d85debaa319a2be0143003a9e881a0f5646 (patch) | |
tree | 351cdb6690d4c6cc8bdd34ec56c15cdf882e23f6 /Doc/whatsnew | |
parent | af722bf9cf7094576303d4a7a2fc38200a12d773 (diff) | |
download | cpython-243d8d85debaa319a2be0143003a9e881a0f5646.zip cpython-243d8d85debaa319a2be0143003a9e881a0f5646.tar.gz cpython-243d8d85debaa319a2be0143003a9e881a0f5646.tar.bz2 |
Issue #16853: Add new selectors module.
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.4.rst | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Doc/whatsnew/3.4.rst b/Doc/whatsnew/3.4.rst index 427083a..e15e534 100644 --- a/Doc/whatsnew/3.4.rst +++ b/Doc/whatsnew/3.4.rst @@ -174,10 +174,11 @@ Some smaller changes made to the core Python language are: New Modules =========== -.. module name -.. ----------- +selectors +--------- -* None yet. +The new :mod:`selectors` module allows high-level and efficient I/O +multiplexing, built upon the :mod:`select` module primitives. Improved Modules |