summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2023-07-10 02:05:38 (GMT)
committerGitHub <noreply@github.com>2023-07-10 02:05:38 (GMT)
commit970982e03d34655df262e14a5efcfdc0bddc0add (patch)
tree90aeefc027d52d7f4965fea44cd7ba6ecf4f3010 /Doc
parentca8b55c7f54b38e264056148075a8061a7082013 (diff)
downloadcpython-970982e03d34655df262e14a5efcfdc0bddc0add.zip
cpython-970982e03d34655df262e14a5efcfdc0bddc0add.tar.gz
cpython-970982e03d34655df262e14a5efcfdc0bddc0add.tar.bz2
gh-105733: Fix ctypes What's New entry (#106576)
Diffstat (limited to 'Doc')
-rw-r--r--Doc/whatsnew/3.13.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.13.rst b/Doc/whatsnew/3.13.rst
index a01fc3b..767e78b 100644
--- a/Doc/whatsnew/3.13.rst
+++ b/Doc/whatsnew/3.13.rst
@@ -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