diff options
author | Victor Stinner <vstinner@python.org> | 2023-10-20 17:29:27 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-20 17:29:27 (GMT) |
commit | d8f32be5b6a736dc2fc9dca3f1bf176c82fc9b44 (patch) | |
tree | 371af41d6ec06a2d00f17212d1047d2b026ec9d3 /Misc/NEWS.d/next/C API | |
parent | 264f4af506bf5b587105eab37fcfb7dfa62d6587 (diff) | |
download | cpython-d8f32be5b6a736dc2fc9dca3f1bf176c82fc9b44.zip cpython-d8f32be5b6a736dc2fc9dca3f1bf176c82fc9b44.tar.gz cpython-d8f32be5b6a736dc2fc9dca3f1bf176c82fc9b44.tar.bz2 |
gh-111089: Add PyUnicode_AsUTF8() to the limited C API (#111121)
Add PyUnicode_AsUTF8() function to the limited C API.
multiprocessing posixshmem now uses PyUnicode_AsUTF8() instead of
PyUnicode_AsUTF8AndSize(): the extension is built with the limited C
API. The function now raises an exception if the filename contains an
embedded null character instead of truncating silently the filename.
Diffstat (limited to 'Misc/NEWS.d/next/C API')
-rw-r--r-- | Misc/NEWS.d/next/C API/2023-10-20-18-07-24.gh-issue-111089.RxkyrQ.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/C API/2023-10-20-18-07-24.gh-issue-111089.RxkyrQ.rst b/Misc/NEWS.d/next/C API/2023-10-20-18-07-24.gh-issue-111089.RxkyrQ.rst new file mode 100644 index 0000000..fe32e06 --- /dev/null +++ b/Misc/NEWS.d/next/C API/2023-10-20-18-07-24.gh-issue-111089.RxkyrQ.rst @@ -0,0 +1,2 @@ +Add :c:func:`PyUnicode_AsUTF8` function to the limited C API. Patch by +Victor Stinner. |