summaryrefslogtreecommitdiffstats
path: root/Objects/bytesobject.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* Merged revisions 74929 via svnmerge fromBenjamin Peterson2009-09-181-3/+4
* rename internal methods of the bytes object to bytes_Benjamin Peterson2009-04-181-102/+102
* The other half of Issue #1580: use short float repr where possible.Eric Smith2009-04-161-0/+1
* Add bytes/bytearray.maketrans() to mirror str.maketrans(), and deprecateGeorg Brandl2009-04-121-0/+8
* Added ',' thousands grouping to int.__format__. See PEP 378.Eric Smith2009-04-031-0/+1
* Optimize slicing of bytes and bytearray by avoiding useless copying.Alexandre Vassalotti2009-04-031-7/+5
* Issue #1717: rename tp_compare to tp_reserved. I'll change theMark Dickinson2009-02-021-2/+2
* Merged revisions 68381 via svnmerge fromBenjamin Peterson2009-01-111-1/+1
* Remove confusing error message in bytes.translate.Georg Brandl2008-12-271-5/+0
* Issue #4445: save 3 bytes of memory (on average) per bytes allocation.Mark Dickinson2008-12-061-10/+18
* STINNER Victor (haypo)'s patch for bug 3988, Byte warning mode and b'' != ''Barry Warsaw2008-10-171-1/+1
* Merged revisions 66748 via svnmerge fromChristian Heimes2008-10-021-1/+1
* add NULL checking for PyBytes_FromObject; R=NealBenjamin Peterson2008-08-271-0/+5
* make bytes(o) respect __bytes__ #2415Benjamin Peterson2008-08-261-2/+9
* Fixed yet another compiler warning of 64bit builds.Christian Heimes2008-08-241-1/+1
* Closes release blocker #3627.Neal Norwitz2008-08-241-1/+7
* #3650: fix a reference leak in bytes.split('x')Amaury Forgeot d'Arc2008-08-221-4/+10
* Merged revisions 65654 via svnmerge fromMartin v. Löwis2008-08-131-15/+15
* Rename PyUnicode_AsString -> _PyUnicode_AsString andMarc-André Lemburg2008-08-071-1/+1
* #2538: bytes objects can only provide read-only buffersAntoine Pitrou2008-08-021-1/+1
* Move the codec decode type checks to bytes/bytearray.decode().Marc-André Lemburg2008-06-061-2/+2
* Merged revisions 63856-63857,63859-63860 via svnmerge fromMartin v. Löwis2008-06-041-0/+13
* Fix misspelling.Georg Brandl2008-06-041-1/+1
* Fix all return types for str/bytes/bytearray docstrings and make the wording ...Georg Brandl2008-05-301-17/+17
* clean up some docstrings and errors in bytesobject.cBenjamin Peterson2008-05-271-21/+18
* Renamed files bytesobject.[ch] and stringobject.[ch]Christian Heimes2008-05-261-2865/+2994
* Renamed PyString to PyBytesChristian Heimes2008-05-261-3/+3
* Renamed PyBytes to PyByteArrayChristian Heimes2008-05-261-233/+233