| Editor: | TBD |
|---|
This article explains the new features in Python 3.16, compared to 3.15.
For full details, see the :ref:`changelog <changelog>`.
Note
Prerelease users should be aware that this document is currently in draft form. It will be updated substantially as Python 3.16 moves towards release, so it's worth checking back even after reading earlier versions.
- None yet.
- TODO
- TODO
- The :meth:`!annotationlib.ForwardRef._evaluate` method which has been deprecated since Python 3.14. Use :meth:`annotationlib.ForwardRef.evaluate` or :func:`typing.evaluate_forward_ref` instead.
- The :func:`!asyncio.iscoroutinefunction` which has been deprecated since Python 3.14. Use :func:`inspect.iscoroutinefunction` instead.
- Calling the Python implementation of :func:`functools.reduce` with function or sequence as keyword arguments has been deprecated since Python 3.14.
- Support for custom logging handlers with the strm argument is deprecated and scheduled for removal in Python 3.16. Define handlers with the stream argument instead.
- Valid extensions start with a '.' or are empty for :meth:`mimetypes.MimeTypes.add_type`. Undotted extensions now raise a :exc:`ValueError`.
- The :meth:`!symtable.Class.get_methods` method which has been deprecated since Python 3.14.
- The :func:`!_enablelegacywindowsfsencoding` function which has been deprecated since Python 3.13. Use the :envvar:`PYTHONLEGACYWINDOWSFSENCODING` environment variable instead. (Contributed by Stan Ulbrych in :gh:`149595`.)
- The :func:`!sysconfig.expand_makefile_vars` function
which has been deprecated since Python 3.14.
Use the
varsargument of :func:`sysconfig.get_paths` instead.
- The undocumented and unused :attr:`!tarfile.TarFile.tarfile` attribute has been deprecated since Python 3.13.
- module_name: TODO
This section lists previously described changes and other bugfixes that may require changes to your code.
Remove the bundled copy of the libmpdec decimal library from the CPython source tree to simplify maintenence and updates. The :mod:`decimal` module will now unconditionally use the system's libmpdec decimal library. Also remove the now unused :option:`!--with-system-libmpdec` :program:`configure` flag. This change has no impact on binary releases of Python, which have been built against a separate copy of libmpdec for the past several releases.
(Contributed by Sergey B Kirpichev in :gh:`115119`.)
- TODO
- TODO
- TODO