summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2013-12-23 15:32:02 (GMT)
committerR David Murray <rdmurray@bitdance.com>2013-12-23 15:32:02 (GMT)
commitf9976e7254965089ebd83c574e18e7e0c623c607 (patch)
tree400aa85bd488ff854ede9f32a508def062ca414c /Doc
parent8d85678d5c53e5f82a533338ffc51a48fe05b973 (diff)
downloadcpython-f9976e7254965089ebd83c574e18e7e0c623c607.zip
cpython-f9976e7254965089ebd83c574e18e7e0c623c607.tar.gz
cpython-f9976e7254965089ebd83c574e18e7e0c623c607.tar.bz2
Add link to selectors description from its summary line.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/whatsnew/3.4.rst7
1 files changed, 5 insertions, 2 deletions
diff --git a/Doc/whatsnew/3.4.rst b/Doc/whatsnew/3.4.rst
index 10c63dd..48b46f6 100644
--- a/Doc/whatsnew/3.4.rst
+++ b/Doc/whatsnew/3.4.rst
@@ -105,8 +105,9 @@ New library modules:
* :mod:`enum`: Support for enumeration types (:pep:`435`).
* :mod:`ensurepip`: Bootstrapping the pip installer (:pep:`453`).
* :mod:`pathlib`: Object-oriented filesystem paths (:pep:`428`).
-* :mod:`selectors`: High-level and efficient I/O multiplexing, built upon the
- :mod:`select` module primitives (part of :pep:`3156`).
+* :mod:`selectors`: :ref:`High-level and efficient I/O multiplexing
+ <whatsnew-selectors>`, built upon the :mod:`select` module primitives (part
+ of :pep:`3156`).
* :mod:`statistics`: A basic numerically stable statistics library (:pep:`450`).
* :mod:`tracemalloc`: Trace Python memory allocations (:pep:`454`).
@@ -378,6 +379,8 @@ For Python 3.4, this module is considered a :term:`provisional API`.
PEP written and implemented by Antoine Pitrou.
+.. _whatsnew-selectors:
+
selectors
---------