summaryrefslogtreecommitdiffstats
path: root/Objects/bytesobject.c
Commit message (Expand)AuthorAgeFilesLines
* startswith and endswith don't accept None as slice index. Patch by Torsten Be...Jesus Cea2011-04-201-18/+5
* #11515: fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-151-1/+1
* Merged revisions 84629 via svnmerge fromSenthil Kumaran2010-09-081-2/+1
* Merged revisions 84070,84074 via svnmerge fromAntoine Pitrou2010-08-151-4/+4
* Merged revisions 83882 via svnmerge fromSenthil Kumaran2010-08-091-1/+1
* Merged revisions 83880 via svnmerge fromSenthil Kumaran2010-08-091-1/+2
* Merged revisions 81862 via svnmerge fromAntoine Pitrou2010-06-091-15/+15
* Recorded merge of revisions 81032 via svnmerge fromAntoine Pitrou2010-05-091-2593/+2593
* Merged revisions 80125,80128,80130 via svnmerge fromBenjamin Peterson2010-04-161-5/+7
* Merged revisions 77745 via svnmerge fromEzio Melotti2010-01-251-1/+1
* 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
* Made the TypeError message in bytes_iconcat() less confusing.Alexandre Vassalotti2008-05-091-2/+2
* Re-indented bytes_getbuffer() and bytes_releasebuffer() to 4-spaceAlexandre Vassalotti2008-04-141-16/+16
* Improved bytes_extend() to avoid making a full copy of the temporaryAlexandre Vassalotti2008-04-141-17/+23
* Merged revisions 62260-62261,62266,62271,62277-62279,62289-62290,62293-62298,...Christian Heimes2008-04-131-1/+5
* Merged revisions 61964-61979 via svnmerge fromChristian Heimes2008-03-281-2/+6
* Fixed #1969: split and rsplit in bytearray are inconsistentChristian Heimes2008-01-301-3/+3
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.Christian Heimes2007-12-191-61/+61
* typoSkip Montanaro2007-12-091-1/+1
* Merged revisions 59376-59406 via svnmerge fromChristian Heimes2007-12-081-13/+2
* Remove a few tab characters introduced by r59314.Alexandre Vassalotti2007-12-041-3/+3
* Issue #1283: Allow any iterable of integers to be passed toAlexandre Vassalotti2007-12-041-18/+71
* Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i...Christian Heimes2007-12-021-13/+13
* Rename buffer -> bytearray.Guido van Rossum2007-11-211-38/+38