]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
gh-106320: Remove _PyBytes_Join() C API (#107144)
authorVictor Stinner <vstinner@python.org>
Sun, 23 Jul 2023 20:10:12 +0000 (22:10 +0200)
committerGitHub <noreply@github.com>
Sun, 23 Jul 2023 20:10:12 +0000 (20:10 +0000)
commit7d41ead9191a18bc473534f6f8bd1095f2232cc2
tree88fbc75fdfd4158da7321ef308c537a66a55af4d
parent0d6dfd68d22762c115d202515fe3310bfb42e327
gh-106320: Remove _PyBytes_Join() C API (#107144)

Move private _PyBytes functions to the internal C API
(pycore_bytesobject.h):

* _PyBytes_DecodeEscape()
* _PyBytes_FormatEx()
* _PyBytes_FromHex()
* _PyBytes_Join()

No longer export these functions.
Include/cpython/bytesobject.h
Include/internal/pycore_bytesobject.h
Modules/_io/bufferedio.c
Parser/string_parser.c