[Python-Dev] PyBytes_Join

2012-07-18 Thread Eli Bendersky
Hi, PyUnicode_Join is a public C API function. However, its cousin for the bytes object is tucked privately in Objects/bytesobject.c as _PyBytes_Join. Is there any harm in exposing it publicly? Eli ___ Python-Dev mailing list Python-Dev@python.org http:

Re: [Python-Dev] PyBytes_Join

2012-07-18 Thread Eli Bendersky
On Wed, Jul 18, 2012 at 3:35 PM, Eli Bendersky wrote: > Hi, > > PyUnicode_Join is a public C API function. However, its cousin for the > bytes object is tucked privately in Objects/bytesobject.c as _PyBytes_Join. > Is there any harm in exposing it publicly? > > A more correctly formulated questio