2024-07-19 10:57:14 -03:00
|
|
|
Pending Removal in Python 3.16
|
|
|
|
------------------------------
|
|
|
|
|
2024-07-27 08:17:54 -03:00
|
|
|
* :mod:`array`:
|
|
|
|
:class:`array.array` ``'u'`` type (:c:type:`wchar_t`):
|
2024-07-19 10:57:14 -03:00
|
|
|
use the ``'w'`` type instead (``Py_UCS4``).
|
2024-07-27 08:17:54 -03:00
|
|
|
|
2024-08-25 16:24:44 -03:00
|
|
|
* :mod:`builtins`:
|
|
|
|
``~bool``, bitwise inversion on bool.
|
|
|
|
|
2024-07-27 08:17:54 -03:00
|
|
|
* :mod:`symtable`:
|
|
|
|
Deprecate :meth:`symtable.Class.get_methods` due to the lack of interest.
|
|
|
|
(Contributed by Bénédikt Tran in :gh:`119698`.)
|
2024-08-20 21:39:24 -03:00
|
|
|
|
|
|
|
* :mod:`shutil`: Deprecate :class:`!shutil.ExecError`, which hasn't
|
|
|
|
been raised by any :mod:`!shutil` function since Python 3.4. It's
|
|
|
|
now an alias for :exc:`RuntimeError`.
|
|
|
|
|