]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
gh-121645: Add PyBytes_Join() function (#121646)
authorVictor Stinner <vstinner@python.org>
Fri, 30 Aug 2024 12:57:33 +0000 (14:57 +0200)
committerGitHub <noreply@github.com>
Fri, 30 Aug 2024 12:57:33 +0000 (12:57 +0000)
commit3d60dfbe1755e00ab20d0ee81281886be77ad5da
treeb1078f50a6b8641321f1044698867cb52f27105e
parent7fca268beee8ed13a8f161f0a0d5e21ff52d1ac1
gh-121645: Add PyBytes_Join() function (#121646)

* Replace _PyBytes_Join() with PyBytes_Join().
* Keep _PyBytes_Join() as an alias to PyBytes_Join().
Doc/c-api/bytes.rst
Doc/whatsnew/3.14.rst
Include/cpython/bytesobject.h
Lib/test/test_capi/test_bytes.py
Misc/NEWS.d/next/C_API/2024-07-12-13-40-59.gh-issue-121645.96QvD3.rst [new file with mode: 0644]
Modules/_io/bufferedio.c
Modules/_io/iobase.c
Modules/_sre/sre.c
Modules/_testcapi/bytes.c
Objects/bytesobject.c