summaryrefslogtreecommitdiffstats
path: root/Objects/bytearrayobject.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* make sure that bytearray methods return a new bytearray even if there is no c...Benjamin Peterson2008-11-191-21/+3
* Silenced compiler warningChristian Heimes2008-08-221-0/+1
* Fix a refleak in bytearray.split and bytearray.rsplit, detected byAmaury Forgeot d'Arc2008-08-171-4/+10
* Issue #3139: Make buffer-interface thread-safe wrt. PyArg_ParseTuple,Martin v. Löwis2008-08-121-32/+37
* Fix a couple of names in error messages that were wrongNeal Norwitz2008-07-201-2/+2
* Backport part of r65043.Georg Brandl2008-07-161-2/+1
* Use _getbytevalue() in init too.Georg Brandl2008-07-161-10/+3
* #3156: fix consistency in what type bytearray methods accept as items.Georg Brandl2008-07-161-40/+38
* Added additional __sizeof__ implementations and addressed comments made inRobert Schuppenies2008-07-101-0/+14
* Docstring typoAndrew M. Kuchling2008-06-211-1/+1
* Renamed bytesobject.c to bytearrayobject.cChristian Heimes2008-05-261-0/+3379