Feature or enhancement
Python 3.13 alpha 1 removed the private _PyBytes_Join(sep, iterable) function which calls sep.join(iterable).
mypyc uses it. Since we already have PyUnicode_Join(sep, iterable), I propose to add a new PyBytes_Join() function.
In practice, it's just about renaming _PyBytes_Join() to PyBytes_Join().
Linked PRs
Feature or enhancement
Python 3.13 alpha 1 removed the private
_PyBytes_Join(sep, iterable)function which callssep.join(iterable).mypyc uses it. Since we already have
PyUnicode_Join(sep, iterable), I propose to add a newPyBytes_Join()function.In practice, it's just about renaming
_PyBytes_Join()toPyBytes_Join().Linked PRs