From 4aea4a0c89698426cc85807c258e85f9c9fd4b28 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Wed, 4 Sep 2013 20:30:34 +0200 Subject: [PATCH] Issue #16853: Mention the new selectors module in What's New in Python 3.4 --- Doc/whatsnew/3.4.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Doc/whatsnew/3.4.rst b/Doc/whatsnew/3.4.rst index e15e5344285..c626abd3cd3 100644 --- a/Doc/whatsnew/3.4.rst +++ b/Doc/whatsnew/3.4.rst @@ -91,6 +91,8 @@ New syntax features: New library modules: * :mod:`enum`: Implementation of the :pep:`435`. +* :mod:`selectors`: High-level and efficient I/O multiplexing, built upon the + :mod:`select` module primitives. New built-in features: