diff options
author | R David Murray <rdmurray@bitdance.com> | 2013-12-20 21:38:09 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2013-12-20 21:38:09 (GMT) |
commit | c054040f86c55eb5f246d334f0bdd68ab8698cba (patch) | |
tree | d3d34c98f4593a7f79c374b2de9abdee8c0b2e8f | |
parent | cde1a06a54c41f327616f17491842159f85a1420 (diff) | |
download | cpython-c054040f86c55eb5f246d334f0bdd68ab8698cba.zip cpython-c054040f86c55eb5f246d334f0bdd68ab8698cba.tar.gz cpython-c054040f86c55eb5f246d334f0bdd68ab8698cba.tar.bz2 |
Add link from pickle protocol 4 in summary to the section about it.
-rw-r--r-- | Doc/whatsnew/3.4.rst | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.4.rst b/Doc/whatsnew/3.4.rst index fb1721a..a7269e3 100644 --- a/Doc/whatsnew/3.4.rst +++ b/Doc/whatsnew/3.4.rst @@ -111,7 +111,7 @@ Significantly Improved Library Modules: * :ref:`Single-dispatch generic functions <whatsnew-singledispatch>` in :mod:`functools` (:pep:`443`) -* New :mod:`pickle` protocol 4 (:pep:`3154`) +* New :mod:`pickle` :ref:`protocol 4 <whatsnew-protocol-4>` (:pep:`3154`) * :ref:`SHA-3 (Keccak) support <whatsnew-sha3>` for :mod:`hashlib`. * TLSv1.1 and TLSv1.2 support for :mod:`ssl`. * :mod:`multiprocessing` now has option to avoid using :func:`os.fork` @@ -291,6 +291,8 @@ described in the PEP. Existing importers should be updated to implement the new methods. +.. _whatsnew-protocol-4: + Pickle protocol 4 ================= |