diff options
Diffstat (limited to 'Misc/NEWS.d/next/C API/2023-09-02-22-35-55.gh-issue-108765.4TOdBT.rst')
-rw-r--r-- | Misc/NEWS.d/next/C API/2023-09-02-22-35-55.gh-issue-108765.4TOdBT.rst | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/Misc/NEWS.d/next/C API/2023-09-02-22-35-55.gh-issue-108765.4TOdBT.rst b/Misc/NEWS.d/next/C API/2023-09-02-22-35-55.gh-issue-108765.4TOdBT.rst deleted file mode 100644 index c13b6d9..0000000 --- a/Misc/NEWS.d/next/C API/2023-09-02-22-35-55.gh-issue-108765.4TOdBT.rst +++ /dev/null @@ -1,5 +0,0 @@ -``Python.h`` no longer includes the ``<ctype.h>`` standard header file. If -needed, it should now be included explicitly. For example, it provides -``isalpha()`` and ``tolower()`` functions which are locale dependent. Python -provides locale independent functions, like :c:func:`!Py_ISALPHA` and -:c:func:`!Py_TOLOWER`. Patch by Victor Stinner. |