Improved Modules
================
+
abc
---
caches that are affected by changes in the object graph. (Contributed
by Ćukasz Langa in :issue:`16832`.)
+
aifc
----
sequences (:issue:`19132`).
+pty
+---
+
+:func:`pty.spawn` now returns the status value from :func:`os.waitpid` on
+the child process, instead of ``None``. (Contributed by Gregory P. Smith.)
+
+
pydoc
-----
:issue:`19219`, :issue:`19218`, :issue:`19209`, :issue:`19205` and
:issue:`9548`)
+* :class:`bz2.BZ2File` is now as fast or faster than the Python2 version for
+ most cases. :class:`lzma.LZMAFile` has also been optimized. (Contributed by
+ Serhiy Storchaka and Nadeem Vawda in :issue:`16034`.)
+
Deprecated
==========
- Issue #12034: Fix bogus caching of result in check_GetFinalPathNameByHandle.
Patch by Atsuo Ishimoto.
-- Improve performance of `lzma.LZMAFile`.
+- Improve performance of `lzma.LZMAFile` (see also issue #16034).
- Issue #16220: wsgiref now always calls close() on an iterable response.
Patch by Brent Tubbs.