summaryrefslogtreecommitdiff
path: root/Objects/bytearrayobject.c
Commit message (Expand)AuthorAgeFilesLines
* [2.7] bpo-34974: Do not replace unexpected errors in bytearray(). (GH-9852) (...Serhiy Storchaka2018-10-151-3/+5
* [2.7] bpo-34234: Use _PyAnyInt_Check() and _PyAnyInt_CheckExact(). (GH-8479)Serhiy Storchaka2018-07-311-1/+1
* [2.7] bpo-20047: Make bytearray methods partition() and rpartition() rejectin...Serhiy Storchaka2017-10-291-3/+24
* bpo-30074: Fix compile warnings of _PySlice_Unpack and convert missed (#1154)Serhiy Storchaka2017-04-151-2/+2
* bpo-27867: Expand the PySlice_GetIndicesEx macro. (#1023) (#1046)Serhiy Storchaka2017-04-081-6/+6
* Issue #29145: Fix overflow checks in string, bytearray and unicode.Xiang Zhang2017-01-091-30/+21
* Correct occurance → occurrence; extracted from patch by Georg BrandlMartin Panter2016-09-081-2/+2
* Issue #27507: Check for integer overflow in bytearray.extend()Martin Panter2016-07-181-1/+11
* Issue #27473: Fixed possible integer overflow in str, unicode and bytearraySerhiy Storchaka2016-07-121-12/+11
* Issue #27039: Fixed bytearray.remove() for values greater than 127.Serhiy Storchaka2016-05-161-7/+5
* Issue #26778: Fixed "a/an/and" typos in code comment and documentation.Serhiy Storchaka2016-04-171-1/+1
* Issue #26494: Fixed crash on iterating exhausting iterators.Serhiy Storchaka2016-03-301-1/+1
* Issue #25421: __sizeof__ methods of builtin types now use dynamic basic size.Serhiy Storchaka2015-12-191-1/+1
* Issue #24467: Fixed possible buffer over-read in bytearray. The bytearraySerhiy Storchaka2015-06-291-1/+3
* Issue #19543: Emit deprecation warning for known non-text encodings.Serhiy Storchaka2015-05-311-3/+3
* Issue #24115: Update uses of PyObject_IsTrue(), PyObject_Not(),Serhiy Storchaka2015-05-301-3/+7
* Issue #20434 Correct error handlin of _PyString_Resize and _PyBytes_ResizeKristján Valur Jónsson2014-04-251-4/+2
* Fix compilation on WindowsChristian Heimes2012-11-031-1/+1
* #8401: assigning an int to a bytearray slice (e.g. b[3:4] = 5) now raises an ...Ezio Melotti2012-11-031-0/+6
* Improve tooltips for splitlines() by showing that the default for keepends is...Raymond Hettinger2012-06-021-1/+1
* Issue #13019: Fix potential reference leaks in bytearray.extend().Antoine Pitrou2012-04-011-2/+6
* merge from 3.2 - Fix closes Issue12621 - Fix docstrings of find and rfind met...Senthil Kumaran2011-07-271-2/+2
* startswith and endswith don't accept None as slice index. Patch by Torsten Be...Jesus Cea2011-04-201-8/+5
* #11515: fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-151-1/+1
* Merged revisions 88735 via svnmerge fromEli Bendersky2011-03-041-2/+2
* Merged revisions 87050,87101,87146,87156,87172,87175,87371,87378,87522-87524,...Georg Brandl2011-02-251-1/+1
* Issue #8930: fix some C code indentationAntoine Pitrou2010-06-091-45/+45
* tiny simplificationBenjamin Peterson2010-04-161-2/+1
* have a clear error when passing something > sys.maxsize to bytearrayBenjamin Peterson2010-04-161-7/+11
* Silence more compiler warnings; fix an instance of potential undefined behav...Mark Dickinson2010-02-141-4/+5
* Issue #7788: Fix a crash produced by deleting a list slice with hugeMark Dickinson2010-01-291-1/+2
* #7775: fixed docstring for rpartitionEzio Melotti2010-01-251-1/+1
* Issue #7561: Operations on empty bytearrays (such as `int(bytearray())`)Antoine Pitrou2010-01-171-17/+6
* Fixed typoEzio Melotti2010-01-141-1/+1
* Issue #7622: Improve the split(), rsplit(), splitlines() and replace()Antoine Pitrou2010-01-131-429/+77
* Issue #7462: Implement the stringlib fast search algorithm for the `rfind`,Antoine Pitrou2010-01-021-30/+9
* Fix missing semicolonMark Dickinson2009-10-151-1/+1
* backport keyword argument support for bytearray.decodeBenjamin Peterson2009-09-181-3/+4
* Issue #6847: s/bytes/bytearray/ in some bytearray error messages. Thanks Hag...Mark Dickinson2009-09-061-4/+4
* Issue #6846: bytearray.pop was returning ints in the range [-128, 128)Mark Dickinson2009-09-061-1/+1
* Issue #6540: Fixed crash for bytearray.translate() with invalid parameters.Georg Brandl2009-07-221-3/+5
* Issue #5793: rationalize isdigit / isalpha / tolower, etc. Will port to py3k....Eric Smith2009-04-271-9/+9
* rename internal bytes_ functions to bytearrayBenjamin Peterson2009-04-181-153/+153
* Whitespace normalization.Georg Brandl2009-04-051-8/+8
* fix funky indentationBenjamin Peterson2009-03-081-4/+4
* Fixed memory leak on failure.Hirokazu Yamamoto2009-03-051-1/+1
* Issue 1242657: list(obj) can swallow KeyboardInterrupt.Raymond Hettinger2009-02-021-0/+4
* fix building the core with --disable-unicodeBenjamin Peterson2009-01-251-17/+30
* Backport r67974:Georg Brandl2008-12-281-16/+25
* Issue #4509: bugs in bytearray with exports (buffer protocol)Antoine Pitrou2008-12-061-11/+31