summaryrefslogtreecommitdiffstats
path: root/Objects/bytearrayobject.c
Commit message (Collapse)AuthorAgeFilesLines
* Backport r67974:Georg Brandl2008-12-281-16/+25
| | | | | | #4759: allow None as first argument of bytearray.translate(), for consistency with bytes.translate(). Also fix segfault for bytearray.translate(x, None) -- will backport this part to 3.0 and 2.6.
* 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 ↵Benjamin Peterson2008-11-191-21/+3
| | | | | | | change Fixes #4348 Reviewed by Brett
* Silenced compiler warningChristian Heimes2008-08-221-0/+1
| | | | | Objects/stringlib/find.h:97: warning: 'stringlib_contains_obj' defined but not used Reviewed by Benjamin Peterson
* Fix a refleak in bytearray.split and bytearray.rsplit, detected byAmaury Forgeot d'Arc2008-08-171-4/+10
| | | | regrtest.py -R:: test_bytes
* Issue #3139: Make buffer-interface thread-safe wrt. PyArg_ParseTuple,Martin v. Löwis2008-08-121-32/+37
| | | | | | | by denying s# to parse objects that have a releasebuffer procedure, and introducing s*. More module might need to get converted to use s*.
* 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
| | | | Also rename confusing "item" parameters to "index".
* Added additional __sizeof__ implementations and addressed comments made inRobert Schuppenies2008-07-101-0/+14
| | | | Issue3122.
* Docstring typoAndrew M. Kuchling2008-06-211-1/+1
|
* Renamed bytesobject.c to bytearrayobject.cChristian Heimes2008-05-261-0/+3379
Renamed stringobject.c to bytesobject.c Fixed Windows builds