diff options
author | R David Murray <rdmurray@bitdance.com> | 2014-03-11 18:03:24 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2014-03-11 18:03:24 (GMT) |
commit | 6cd3a0d59871874f9f1d3ae40023c96bd1c9c09b (patch) | |
tree | e8da1f700649fc0966cb969ef318ea70d24e2f6c /Doc | |
parent | 1243c7d32c9dc700509f15274545d6ac6f138fe9 (diff) | |
download | cpython-6cd3a0d59871874f9f1d3ae40023c96bd1c9c09b.zip cpython-6cd3a0d59871874f9f1d3ae40023c96bd1c9c09b.tar.gz cpython-6cd3a0d59871874f9f1d3ae40023c96bd1c9c09b.tar.bz2 |
whatsnew: summary section tweaks.
Removed an entry made redundant by the new security section,
Moved 'marshal' to the section on features other platforms
will need to support, and mention that 'help' is improved
by the inspect/pydoc changes (#19561 msg213153).
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/whatsnew/3.4.rst | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/Doc/whatsnew/3.4.rst b/Doc/whatsnew/3.4.rst index 141ca0b..57c72c5 100644 --- a/Doc/whatsnew/3.4.rst +++ b/Doc/whatsnew/3.4.rst @@ -100,6 +100,8 @@ New expected features for Python implementations: that are not text encodings (multiple issues). * :ref:`A ModuleSpec Type <whatsnew-pep-451>` for the Import System (:pep:`451`). (Affects importer authors.) +* The :mod:`marshal` format has been made :ref:`more compact and efficient + <whatsnew-marshal-3>` (:issue:`16475`). New library modules: @@ -131,7 +133,8 @@ Significantly Improved Library Modules: (:class:`~email.contentmanager.EmailMessage`) that :ref:`simplify MIME handling <whatsnew_email_contentmanager>` (:issue:`18891`). * The :mod:`inspect` and :mod:`pydoc` modules are now capable of - correct introspection of a much wider variety of callable objects + correct introspection of a much wider variety of callable objects, + which improves the output of the Python :func:`help` system. * The :mod:`ipaddress` module API has been declared stable Security improvements: @@ -161,11 +164,7 @@ CPython implementation improvements: * Leveraging :pep:`442`, :ref:`module globals are no longer set to None during finalization <whatsnew-pep-442>`, in most cases (:issue:`18214`). * :ref:`Configurable memory allocators <whatsnew-pep-445>` (:pep:`445`). -* :ref:`Secure and interchangeable hash algorithm <whatsnew-pep-456>` - (:pep:`456`). * :ref:`Argument Clinic <whatsnew-pep-436>` (:pep:`436`). -* The :mod:`marshal` format has been made :ref:`more compact and efficient - <whatsnew-marshal-3>` (:issue:`16475`). Please read on for a comprehensive list of user-facing changes, including many other smaller improvements, CPython optimizations, deprecations, and potential |