summaryrefslogtreecommitdiffstats
path: root/Objects/stringlib/join.h
Commit message (Expand)AuthorAgeFilesLines
* bpo-42519: Replace PyMem_MALLOC() with PyMem_Malloc() (GH-23586)Victor Stinner2020-12-011-1/+1
* bpo-39943: Add the const qualifier to pointers on non-mutable PyBytes data. (...Serhiy Storchaka2020-04-121-2/+2
* bpo-36051: Fix compiler warning. (GH-18325)Inada Naoki2020-02-031-1/+1
* bpo-36051: Drop GIL during large bytes.join() (GH-17757)Bruce Merry2020-01-291-17/+40
* Issue #28126: Replace Py_MEMCPY with memcpy(). Visual Studio can properly opt...Christian Heimes2016-09-131-3/+3
* Issue #26765: Ensure that bytes- and unicode-specific stringlib files are usedSerhiy Storchaka2016-05-161-1/+1
* Issue #22896: Avoid to use PyObject_AsCharBuffer(), PyObject_AsReadBuffer()Serhiy Storchaka2015-02-021-1/+8
* Issue #22581: Use more "bytes-like object" throughout the docs and comments.Serhiy Storchaka2014-12-051-3/+3
* Issue #16592: stringlib_bytes_join doesn't raise MemoryError on allocation fa...Christian Heimes2012-12-021-0/+1
* Issue #12805: Make bytes.join and bytearray.join faster when the separator is...Antoine Pitrou2012-10-201-0/+10
* Issue #15958: bytes.join and bytearray.join now accept arbitrary buffer objects.Antoine Pitrou2012-10-161-0/+122