summaryrefslogtreecommitdiff
path: root/Objects/bytesobject.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #29159: Fix regression in bytes(x) when x.__index__() raises Exception.INADA Naoki2017-01-061-8/+12
* Issue #29000: Fixed bytes formatting of octals with zero padding in alternateSerhiy Storchaka2016-12-171-1329/+997
|\
| * Issue 28128: Print out better error/warning messages for invalid string escap...Eric V. Smith2016-10-311-4/+33
| * Issue #25270: Merge from 3.5Berker Peksag2016-09-161-1328/+967
| |\
| | * Issue #28126: Replace Py_MEMCPY with memcpy(). Visual Studio can properly opt...Christian Heimes2016-09-131-10/+10
| | * remove all usage of Py_LOCALBenjamin Peterson2016-09-091-1/+1
| | * #27364: Deprecate invalid escape strings in str/byutes.R David Murray2016-09-081-1/+2
| | * Issue #27895: Spelling fixes (Contributed by Ville Skytt?).Raymond Hettinger2016-08-301-2/+2
| | * Issue #27506: Support bytes/bytearray.translate() delete as keyword argumentMartin Panter2016-08-271-6/+4
| | * Issue #27704: Optimized creating bytes and bytearray from byte-like objectsSerhiy Storchaka2016-08-151-10/+8
| | * Issue #27473: Fixed possible integer overflow in bytes and bytearraySerhiy Storchaka2016-07-101-1305/+947
| | |\
| | | * Issue #27460: Unified error messages in bytes constructor for integersSerhiy Storchaka2016-07-061-2/+2
| | | * Backed out changeset b0087e17cd5e (issue #26765)Serhiy Storchaka2016-07-031-11/+71
| | | * Issue #26765: Moved wrappers for bytes and bytearray methods to common headerSerhiy Storchaka2016-07-011-71/+11
| | | * Issue #27007: The fromhex() class methods of bytes and bytearray subclassesSerhiy Storchaka2016-07-011-1/+6
| | | * Issue #27125: Merge typo fixes from 3.5Martin Panter2016-05-301-1304/+941
| | | |\
| | | | * Issue #26765: Moved common code for the replace() method of bytes and bytearraySerhiy Storchaka2016-05-051-505/+3
| | | | * Issue #26765: Moved common code and docstrings for bytes and bytearray methodsSerhiy Storchaka2016-05-041-336/+26
| | | | * Got rid of redundand "self" parameter declarations.Serhiy Storchaka2016-05-021-26/+20
| | | | * Issue #25349, #26249: Fix memleak in formatfloat()Victor Stinner2016-04-261-0/+1
| | | | * Issue #26766: Fix _PyBytesWriter_Finish()Victor Stinner2016-04-151-1/+6
| | | | * Issue #26764: Fixed SystemError in bytes.__rmod__.Serhiy Storchaka2016-04-151-6/+4
| | | | * Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREFSerhiy Storchaka2016-04-101-1/+1
| | | | |\
| | | | * | Issue #17339: Improved TypeError message in bytes constructor.Serhiy Storchaka2016-04-101-16/+15
| | | | * | Issue #22570: Renamed Py_SETREF to Py_XSETREF.Serhiy Storchaka2016-04-061-460/+912
| | | | |\ \
| | | | | * \ Issue #26494: Fixed crash on iterating exhausting iterators.Serhiy Storchaka2016-03-301-460/+912
| | | | | |\ \
| | | | | | * | Optimize bytes.replace(b'', b'.')Victor Stinner2016-03-211-9/+19
| | | | | | * | Issue #25923: Added more const qualifiers to signatures of static and private...Serhiy Storchaka2015-12-251-1/+1
| | | | | | * | Issue #20440: Massive replacing unsafe attribute setting code with specialSerhiy Storchaka2015-12-241-451/+893
| | | | | | |\ \
| | | | | | | * \ Issue #25766: Special method __bytes__() now works in str subclasses.Serhiy Storchaka2015-12-201-6/+12
| | | | | | | |\ \
| | | | | | | * \ \ Issue #24731: Fixed crash on converting objects with special methodsSerhiy Storchaka2015-11-251-4/+4
| | | | | | | |\ \ \
| | | | | | | * | | | Issue #24821: Refactor STRINGLIB(fastsearch_memchr_1char) and split it onSerhiy Storchaka2015-11-141-10/+9
| | | | | | | * | | | Use _PyBytesWriter in _PyBytes_FromIterator()Victor Stinner2015-10-141-19/+18
| | | | | | | * | | | Add _PyBytesWriter_Resize() functionVictor Stinner2015-10-141-18/+30
| | | | | | | * | | | Factorize _PyBytes_FromList() and _PyBytes_FromTuple() code using a C macroVictor Stinner2015-10-141-54/+35
| | | | | | | * | | | Split PyBytes_FromObject() into subfunctionsVictor Stinner2015-10-141-71/+114
| | | | | | | * | | | Modify _PyBytes_DecodeEscapeRecode() to use _PyBytesAPIVictor Stinner2015-10-141-58/+73
| | | | | | | * | | | _PyBytesWriter_Alloc(): only use 10 bytes of the small buffer in debug mode toVictor Stinner2015-10-141-1/+13
| | | | | | | * | | | Optimize bytes.fromhex() and bytearray.fromhex()Victor Stinner2015-10-141-52/+76
| | | | | | | * | | | Optimize bytearray % argsVictor Stinner2015-10-141-18/+23
| | | | | | | * | | | Add use_bytearray attribute to _PyBytesWriterVictor Stinner2015-10-141-28/+65
| | | | | | | * | | | Rewrite PyBytes_FromFormatV() using _PyBytesWriter APIVictor Stinner2015-10-141-171/+165
| | | | | | | * | | | Fix compilation error in _PyBytesWriter_WriteBytes() on WindowsVictor Stinner2015-10-121-1/+3
| | | | | | | * | | | Writer APIs: use empty string singletonsVictor Stinner2015-10-121-9/+14
| | | | | | | * | | | Relax _PyBytesWriter APIVictor Stinner2015-10-121-8/+7
| | | | | | | * | | | Issue #25349: Add fast path for b'%c' % intVictor Stinner2015-10-091-10/+15
| | | | | | | * | | | Issue #25349: Optimize bytes % intVictor Stinner2015-10-091-0/+36
| | | | | | | * | | | Add _PyBytesWriter_WriteBytes() to factorize the codeVictor Stinner2015-10-091-0/+14
| | | | | | | * | | | _PyBytesWriter: simplify code to avoid "prealloc" parametersVictor Stinner2015-10-091-9/+7
| | | | | | | * | | | _PyBytesWriter: rename size attribute to min_sizeVictor Stinner2015-10-091-7/+7