summaryrefslogtreecommitdiffstats
path: root/Objects/bytearrayobject.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #11231: Fix bytes and bytearray docstringsVictor Stinner2011-12-171-7/+5
|\
| * Issue #11231: Fix bytes and bytearray docstringsVictor Stinner2011-12-171-7/+5
* | Issue #13503: Use a more efficient reduction format for bytearrays withAntoine Pitrou2011-12-051-10/+42
* | Use the small object allocator for small bytearraysAntoine Pitrou2011-11-121-5/+5
* | Issue #12170: The count(), find(), rfind(), index() and rindex() methodsAntoine Pitrou2011-10-201-13/+46
* | Rename _Py_identifier to _Py_IDENTIFIER.Martin v. Löwis2011-10-141-1/+1
* | Issue #13088: Add shared Py_hexdigits constant to format a number into base 16Victor Stinner2011-10-141-3/+2
* | Use identifier API for PyObject_GetAttrString.Martin v. Löwis2011-10-101-1/+3
* | Fix hex_digit_to_int() prototype: expect Py_UCS4, not Py_UNICODEVictor Stinner2011-09-291-2/+2
* | Implement PEP 393.Martin v. Löwis2011-09-281-71/+74
* | Issue #13012: Allow 'keepends' to be passed as a keyword argument in str.spli...Mark Dickinson2011-09-241-4/+6
* | Replace Py_NotImplemented returns with the macro form Py_RETURN_NOTIMPLEMENTED.Brian Curtin2011-08-111-6/+3
* | merge from 3.2 - Fix closes Issue12621 - Fix docstrings of find and rfind met...Senthil Kumaran2011-07-271-2/+2
|\ \ | |/
| * Fix closes Issue12621 - Fix docstrings of find and rfind methods of bytes/byt...Senthil Kumaran2011-07-271-2/+2
* | #6780: merge with 3.2.Ezio Melotti2011-04-261-4/+12
|\ \ | |/
| * #6780: merge with 3.1.Ezio Melotti2011-04-261-4/+12
| |\
| | * #6780: fix starts/endswith error message to mention that tuples are accepted ...Ezio Melotti2011-04-261-4/+12
* | | MERGE: startswith and endswith don't accept None as slice index. Patch by Tor...Jesus Cea2011-04-201-8/+5
|\ \ \ | |/ /
| * | MERGE: startswith and endswith don't accept None as slice index. Patch by Tor...Jesus Cea2011-04-201-8/+5
| |\ \ | | |/
| | * startswith and endswith don't accept None as slice index. Patch by Torsten Be...Jesus Cea2011-04-201-8/+5
* | | #11515: Merge with 3.2.Ezio Melotti2011-03-151-1/+1
|\ \ \ | |/ /
| * | #11515: Merge with 3.1.Ezio Melotti2011-03-151-1/+1
| |\ \ | | |/
| | * #11515: fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-151-8/+8
| | * Merged revisions 86537,86867-86868,86881,86887,86913-86915,86931-86933,86960,...Georg Brandl2011-02-251-1/+1
| | * Merged revisions 84070,84074 via svnmerge fromAntoine Pitrou2010-08-151-2/+2
| | * Merged revisions 81862 via svnmerge fromAntoine Pitrou2010-06-091-32/+32
| | * Merged revisions 80125,80128,80130 via svnmerge fromBenjamin Peterson2010-04-161-6/+9
| | * Merged revisions 78185 via svnmerge fromMark Dickinson2010-02-141-4/+5
| | * Merged revisions 77823 via svnmerge fromMark Dickinson2010-01-291-1/+2
| | * Merged revisions 77745 via svnmerge fromEzio Melotti2010-01-251-1/+1
| | * Merged revisions 77576 via svnmerge fromAntoine Pitrou2010-01-171-5/+3
| | * Merged revisions 74679 via svnmerge fromMark Dickinson2009-09-061-4/+4
| | * Merged revisions 74675 via svnmerge fromMark Dickinson2009-09-061-1/+1
| | * Merged revisions 74169 via svnmerge fromGeorg Brandl2009-07-221-3/+5
| * | Merged revisions 88735 via svnmerge fromEli Bendersky2011-03-041-2/+2
* | | Issue #11386: Fixed the exception thrown by bytearray.pop() for empty bytearraysEli Bendersky2011-03-041-2/+2
* | | Issue #10516: added copy() and clear() methods to bytearrays as wellEli Bendersky2011-03-031-0/+26
* | | Issue #8914: fix various warnings from the Clang static analyzer v254.Brett Cannon2011-02-221-3/+2
|/ /
* | remove (un)transform methodsBenjamin Peterson2010-12-121-73/+0
* | Fix typo.Georg Brandl2010-12-041-1/+1
* | Merge branches/pep-0384.Martin v. Löwis2010-12-031-2/+2
* | #7475: add (un)transform method to bytes/bytearray and str, add back codecs t...Georg Brandl2010-12-021-0/+73
* | str, bytes, bytearray docstring: remove unnecessary [...]Victor Stinner2010-11-071-1/+1
* | Fix encode/decode method doc of str, bytes, bytearray typesVictor Stinner2010-11-071-3/+3
* | Fix some compilation warnings under 64-bit Windows (issue #9566).Antoine Pitrou2010-08-151-2/+2
* | Issue #2443: Added a new macro, Py_VA_COPY, which is equivalent to C99Alexander Belopolsky2010-08-111-7/+7
* | Issue #9530: Fix undefined-behaviour-inducing overflow checks in bytes and b...Mark Dickinson2010-08-101-32/+22
* | Issue #9530: Fix a couple of places where undefined behaviour canMark Dickinson2010-08-061-2/+8
* | Silence gcc warning. (In function 'bytearray_init': warning: 'value' may be u...Mark Dickinson2010-07-091-0/+2
* | Merged revisions 81860 via svnmerge fromAntoine Pitrou2010-06-091-32/+32