summaryrefslogtreecommitdiff
path: root/Objects/bytesobject.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #14889: PyBytes_FromObject(bytes) now just increfs and returns.Larry Hastings2012-05-241-0/+6
* Simplify and optimize formatlong()Victor Stinner2012-04-271-143/+0
* Check newly created consistency using _PyUnicode_CheckConsistency(str, 1)Victor Stinner2012-04-271-0/+1
* Rename _PyIter_GetBuiltin to _PyObject_GetBuiltin, and do not include it in t...Antoine Pitrou2012-04-051-2/+2
* Issue #14288: Serialization support for builtin iterators.Kristj?n Valur J?nsson2012-04-031-0/+34
* #14081: The sep and maxsplit parameter to str.split, bytes.split, and bytearr...Ezio Melotti2012-02-261-8/+12
* merge with 3.2Georg Brandl2012-01-221-110/+121
|\
| * Issue #11231: Fix bytes and bytearray docstringsVictor Stinner2011-12-171-110/+121
| |\
| | * Issue #13411: memoryview objects are now hashable when the underlying object ...Antoine Pitrou2011-11-211-16/+5
| | * Fix misuse of PyUnicode_GET_SIZE() => PyUnicode_GET_LENGTH()Victor Stinner2011-11-211-1/+1
| | * Issue #12170: The count(), find(), rfind(), index() and rindex() methodsAntoine Pitrou2011-10-201-18/+44
| | * Issue #13088: Add shared Py_hexdigits constant to format a number into base 16Victor Stinner2011-10-141-3/+2
| | * 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-64/+63
| | * Issue #1621: Fix undefined behaviour in bytes.__hash__, str.__hash__, tuple._...Mark Dickinson2011-09-241-4/+4
| | * Issue #13012: Allow 'keepends' to be passed as a keyword argument in str.spli...Mark Dickinson2011-09-241-3/+5
| | * merge from 3.2 - Fix closes Issue12621 - Fix docstrings of find and rfind met...Senthil Kumaran2011-07-271-6/+2
| | |\
| | | * #6780: merge with 3.2.Ezio Melotti2011-04-261-6/+2
| | | |\
| | | | * MERGE: startswith and endswith don't accept None as slice index. Patch by Tor...Jesus Cea2011-04-201-6/+2
| | | | |\
| | | | | * Issue #11634: Remove misleading paragraph from a commentEli Bendersky2011-03-241-6/+2
* | | | | | Fix #13834: strip() strips leading and trailing whitespace.Georg Brandl2012-01-221-1/+1
* | | | | | Consolidate the occurrances of the prime used as the multiplier when hashingGregory P. Smith2012-01-141-1/+1
|/ / / / /
* | | | | Issue #11231: Fix bytes and bytearray docstringsVictor Stinner2011-12-171-3/+4
|/ / / /
* | | | Fix closes Issue12621 - Fix docstrings of find and rfind methods of bytes/byt...Senthil Kumaran2011-07-271-2/+2
|/ / /
* | | #6780: merge with 3.1.Ezio Melotti2011-04-261-2/+10
|\ \ \ | |/ / |/| |
| * | #6780: fix starts/endswith error message to mention that tuples are accepted ...Ezio Melotti2011-04-261-2/+10
* | | MERGE: startswith and endswith don't accept None as slice index. Patch by Tor...Jesus Cea2011-04-201-557/+203
|\ \ \ | |/ / |/| / | |/
| * #11515: Merge with 3.1.Ezio Melotti2011-03-151-1/+1
| |\
| * | remove (un)transform methodsBenjamin Peterson2010-12-121-64/+0
| * | Merge branches/pep-0384.Martin v. Löwis2010-12-031-1/+1
| * | #7475: add (un)transform method to bytes/bytearray and str, add back codecs t...Georg Brandl2010-12-021-0/+64
| * | 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
| * | Issue #10288: The deprecated family of "char"-handling macrosDavid Malcolm2010-11-051-14/+14
| * | make hashes always the size of pointers; introduce Py_hash_t #9778Benjamin Peterson2010-10-171-2/+2
| * | Revert the doc change done in r83880. str.replace with negative count value i...Senthil Kumaran2010-09-081-2/+1
| * | Fix some compilation warnings under 64-bit Windows (issue #9566).Antoine Pitrou2010-08-151-6/+6
| * | Issue #2443: Added a new macro, Py_VA_COPY, which is equivalent to C99Alexander Belopolsky2010-08-111-9/+1
| * | Issue #9530: Fix undefined-behaviour-inducing overflow checks in bytes and b...Mark Dickinson2010-08-101-34/+23
| * | spelling mistake.Senthil Kumaran2010-08-091-1/+1
| * | Fix Issue5416 - explain negative value for count in bytes object replace.Senthil Kumaran2010-08-091-1/+2
| * | Merged revisions 81860 via svnmerge fromAntoine Pitrou2010-06-091-19/+19
| * | Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou2010-05-091-2326/+2326
| * | Merged revisions 80126 via svnmerge fromBenjamin Peterson2010-04-161-5/+7
| * | Merged revisions 77743 via svnmerge fromEzio Melotti2010-01-251-1/+1
| * | Merged revisions 77461 via svnmerge fromAntoine Pitrou2010-01-131-447/+76
| * | Issue #7382: Fix bytes.__getnewargs__.Alexandre Vassalotti2010-01-121-1/+1
| * | Issue #6688: Optimize PyBytes_FromObject().Alexandre Vassalotti2010-01-091-7/+52
| * | Issue #6687: Moved the special-case for integers out of PyBytes_FromObject.Alexandre Vassalotti2009-12-311-21/+25
| * | Issue #5748: bytesobject.c should not have its own private defines for string...Eric Smith2009-11-301-16/+2