gh-105733: Fix ctypes What's New entry (#106576)

This commit is contained in:
Victor Stinner 2023-07-10 04:05:38 +02:00 committed by GitHub
parent ca8b55c7f5
commit 970982e03d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -169,7 +169,7 @@ Deprecated
* :mod:`ctypes`: Deprecate undocumented :func:`!ctypes.SetPointerType`
and :func:`!ctypes.ARRAY` functions.
Replace ``ctypes.SetPointerType(item_type, size)`` with ``item_type * size``.
Replace ``ctypes.ARRAY(item_type, size)`` with ``item_type * size``.
(Contributed by Victor Stinner in :gh:`105733`.)
Pending Removal in Python 3.14