diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2023-08-22 12:50:30 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-22 12:50:30 (GMT) |
commit | d7202e4879bf4e7e00a69500ddcb3143864139b4 (patch) | |
tree | 9f1c6a1ab8efff6c1ab9ee4c003d04e2950e3508 /Doc/whatsnew/3.1.rst | |
parent | c556f9a3c9af48c9af9e1f298be638553a6c886e (diff) | |
download | cpython-d7202e4879bf4e7e00a69500ddcb3143864139b4.zip cpython-d7202e4879bf4e7e00a69500ddcb3143864139b4.tar.gz cpython-d7202e4879bf4e7e00a69500ddcb3143864139b4.tar.bz2 |
gh-107298: Fix numerous ref errors and typos in the C API docs (GH-108258)
Diffstat (limited to 'Doc/whatsnew/3.1.rst')
-rw-r--r-- | Doc/whatsnew/3.1.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/whatsnew/3.1.rst b/Doc/whatsnew/3.1.rst index 3c1c9c3..e237179 100644 --- a/Doc/whatsnew/3.1.rst +++ b/Doc/whatsnew/3.1.rst @@ -501,12 +501,12 @@ Changes to Python's build process and to the C API include: (Contributed by Mark Dickinson and Lisandro Dalcrin; :issue:`5175`.) -* Deprecated :c:func:`PyNumber_Int`. Use :c:func:`PyNumber_Long` instead. +* Deprecated :c:func:`!PyNumber_Int`. Use :c:func:`PyNumber_Long` instead. (Contributed by Mark Dickinson; :issue:`4910`.) * Added a new :c:func:`PyOS_string_to_double` function to replace the - deprecated functions :c:func:`PyOS_ascii_strtod` and :c:func:`PyOS_ascii_atof`. + deprecated functions :c:func:`!PyOS_ascii_strtod` and :c:func:`!PyOS_ascii_atof`. (Contributed by Mark Dickinson; :issue:`5914`.) |