Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork34k
Closed
Description
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 havePyUnicode_Join(sep, iterable), I propose to add a newPyBytes_Join() function.
In practice, it's just about renaming_PyBytes_Join() toPyBytes_Join().