diff options
author | Heinz-Alexander Fuetterer <35225576+afuetterer@users.noreply.github.com> | 2023-09-20 16:58:23 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-20 16:58:23 (GMT) |
commit | ef6d475db3af4d30a3104fa6301dcd36c71eacab (patch) | |
tree | b103eebc681bc79f345aabbeaa7802c1d5eda093 /Misc | |
parent | 32ffe58c1298b0082ff6fe96ad45c4efe49f4338 (diff) | |
download | cpython-ef6d475db3af4d30a3104fa6301dcd36c71eacab.zip cpython-ef6d475db3af4d30a3104fa6301dcd36c71eacab.tar.gz cpython-ef6d475db3af4d30a3104fa6301dcd36c71eacab.tar.bz2 |
Fix typos in docs and comments (#109619)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/C API/2023-08-24-20-08-02.gh-issue-108014.20DOSS.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Misc/NEWS.d/next/C API/2023-08-24-20-08-02.gh-issue-108014.20DOSS.rst b/Misc/NEWS.d/next/C API/2023-08-24-20-08-02.gh-issue-108014.20DOSS.rst index 5c1b04f..35cb153 100644 --- a/Misc/NEWS.d/next/C API/2023-08-24-20-08-02.gh-issue-108014.20DOSS.rst +++ b/Misc/NEWS.d/next/C API/2023-08-24-20-08-02.gh-issue-108014.20DOSS.rst @@ -1,4 +1,4 @@ Add :c:func:`PyLong_AsInt` function: similar to :c:func:`PyLong_AsLong`, but store the result in a C :c:expr:`int` instead of a C :c:expr:`long`. -Previously, it was known as the the private function :c:func:`!_PyLong_AsInt` +Previously, it was known as the private function :c:func:`!_PyLong_AsInt` (with an underscore prefix). Patch by Victor Stinner. |