Skip to content

Commit

Permalink
Move Python deprecation from C API list and also into pending list
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk committed Oct 9, 2024
1 parent 3024b16 commit bbd83f7
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions Doc/deprecations/pending-removal-in-3.16.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
Pending Removal in Python 3.16
------------------------------

* :mod:`array`:
:class:`array.array` ``'u'`` type (:c:type:`wchar_t`):
use the ``'w'`` type instead (``Py_UCS4``).

* :mod:`asyncio`:
:func:`!asyncio.iscoroutinefunction` is deprecated
and will be removed in Python 3.16,
use :func:`inspect.iscoroutinefunction` instead.
(Contributed by Jiahao Li and Kumar Aditya in :gh:`122875`.)

* :mod:`builtins`:

* Bitwise inversion on boolean types, ``~True`` or ``~False``
Expand Down

0 comments on commit bbd83f7

Please sign in to comment.