diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2024-07-25 16:06:31 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-25 16:06:31 (GMT) |
commit | dd270f610c40037f298e55e7ec2e0637563a8cfc (patch) | |
tree | 245ff2f77f82bbf576d0dfe9e335ee121569edab /Include/internal/pycore_bytesobject.h | |
parent | 88a96fc391d36f537a613c6efbe5980080156fea (diff) | |
download | cpython-dd270f610c40037f298e55e7ec2e0637563a8cfc.zip cpython-dd270f610c40037f298e55e7ec2e0637563a8cfc.tar.gz cpython-dd270f610c40037f298e55e7ec2e0637563a8cfc.tar.bz2 |
[3.13] gh-121489: Export private _PyBytes_Join() again (GH-122267) (#122287)
gh-121489: Export private _PyBytes_Join() again (GH-122267)
(cherry picked from commit aef95eb107fef9355c66461612aedd31265f8c21)
Co-authored-by: Marc Mueller <30130371+cdce8p@users.noreply.github.com>
Diffstat (limited to 'Include/internal/pycore_bytesobject.h')
-rw-r--r-- | Include/internal/pycore_bytesobject.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Include/internal/pycore_bytesobject.h b/Include/internal/pycore_bytesobject.h index 94d421a..300e7f4 100644 --- a/Include/internal/pycore_bytesobject.h +++ b/Include/internal/pycore_bytesobject.h @@ -23,10 +23,6 @@ extern PyObject* _PyBytes_FromHex( PyAPI_FUNC(PyObject*) _PyBytes_DecodeEscape(const char *, Py_ssize_t, const char *, const char **); -/* _PyBytes_Join(sep, x) is like sep.join(x). sep must be PyBytesObject*, - x must be an iterable object. */ -extern PyObject* _PyBytes_Join(PyObject *sep, PyObject *x); - // Substring Search. // |