Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | bpo-42519: Replace PyMem_MALLOC() with PyMem_Malloc() (GH-23586) | Victor Stinner | 2020-12-01 | 1 | -1/+1 |
| | | | | | | | | | | | No longer use deprecated aliases to functions: * Replace PyMem_MALLOC() with PyMem_Malloc() * Replace PyMem_REALLOC() with PyMem_Realloc() * Replace PyMem_FREE() with PyMem_Free() * Replace PyMem_Del() with PyMem_Free() * Replace PyMem_DEL() with PyMem_Free() Modify also the PyMem_DEL() macro to use directly PyMem_Free(). | ||||
* | bpo-39943: Add the const qualifier to pointers on non-mutable PyBytes data. ↵ | Serhiy Storchaka | 2020-04-12 | 1 | -2/+2 |
| | | | | (GH-19472) | ||||
* | bpo-36051: Fix compiler warning. (GH-18325) | Inada Naoki | 2020-02-03 | 1 | -1/+1 |
| | |||||
* | bpo-36051: Drop GIL during large bytes.join() (GH-17757) | Bruce Merry | 2020-01-29 | 1 | -17/+40 |
| | | | | | Improve multi-threaded performance by dropping the GIL in the fast path of bytes.join. To avoid increasing overhead for small joins, it is only done if the output size exceeds a threshold. | ||||
* | Issue #28126: Replace Py_MEMCPY with memcpy(). Visual Studio can properly ↵ | Christian Heimes | 2016-09-13 | 1 | -3/+3 |
| | | | | optimize memcpy(). | ||||
* | Issue #26765: Ensure that bytes- and unicode-specific stringlib files are used | Serhiy Storchaka | 2016-05-16 | 1 | -1/+1 |
| | | | | with correct type. | ||||
* | Issue #22896: Avoid to use PyObject_AsCharBuffer(), PyObject_AsReadBuffer() | Serhiy Storchaka | 2015-02-02 | 1 | -1/+8 |
| | | | | and PyObject_AsWriteBuffer(). | ||||
* | Issue #22581: Use more "bytes-like object" throughout the docs and comments. | Serhiy Storchaka | 2014-12-05 | 1 | -3/+3 |
| | |||||
* | Issue #16592: stringlib_bytes_join doesn't raise MemoryError on allocation ↵ | Christian Heimes | 2012-12-02 | 1 | -0/+1 |
| | | | | failure | ||||
* | Issue #12805: Make bytes.join and bytearray.join faster when the separator ↵ | Antoine Pitrou | 2012-10-20 | 1 | -0/+10 |
| | | | | | | is empty. Patch by Serhiy Storchaka. | ||||
* | Issue #15958: bytes.join and bytearray.join now accept arbitrary buffer objects. | Antoine Pitrou | 2012-10-16 | 1 | -0/+122 |