diff options
author | Łukasz Langa <lukasz@langa.pl> | 2022-10-05 21:10:55 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-05 21:10:55 (GMT) |
commit | 3b0f2a7ff068f24198b848f25662078c4223b10a (patch) | |
tree | f05da6a7d2700747a2a004a1a990447b862afa4f /Doc/whatsnew/2.3.rst | |
parent | ac2427eeffef73d9c6d83fe35c50244d348e53e3 (diff) | |
download | cpython-3b0f2a7ff068f24198b848f25662078c4223b10a.zip cpython-3b0f2a7ff068f24198b848f25662078c4223b10a.tar.gz cpython-3b0f2a7ff068f24198b848f25662078c4223b10a.tar.bz2 |
[3.10] gh-93738: Documentation C syntax (:c:type:<C type> -> :c:expr:<C type>) (GH-97768) (#97925)
:c:type:`<C type>` -> :c:expr:`<C type>`
Co-authored-by: Łukasz Langa <lukasz@langa.pl>
(cherry picked from commit 0031e62973801d34a9e19ab7bb199e9668e32d7b)
Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
Diffstat (limited to 'Doc/whatsnew/2.3.rst')
-rw-r--r-- | Doc/whatsnew/2.3.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/whatsnew/2.3.rst b/Doc/whatsnew/2.3.rst index 27a0756..c6e2003 100644 --- a/Doc/whatsnew/2.3.rst +++ b/Doc/whatsnew/2.3.rst @@ -1905,8 +1905,8 @@ Changes to Python's build process and to the C API include: "")`` instead, but this will be slower than using :const:`METH_NOARGS`. * :c:func:`PyArg_ParseTuple` accepts new format characters for various sizes of - unsigned integers: ``B`` for :c:type:`unsigned char`, ``H`` for :c:type:`unsigned - short int`, ``I`` for :c:type:`unsigned int`, and ``K`` for :c:type:`unsigned + unsigned integers: ``B`` for :c:expr:`unsigned char`, ``H`` for :c:expr:`unsigned + short int`, ``I`` for :c:expr:`unsigned int`, and ``K`` for :c:expr:`unsigned long long`. * A new function, ``PyObject_DelItemString(mapping, char *key)`` was added |