summaryrefslogtreecommitdiffstats
path: root/Objects/bytesobject.c
Commit message (Expand)AuthorAgeFilesLines
* Rename bytesobject.c back to stringobject.c to keep with the PyString theme.Gregory P. Smith2008-06-101-5215/+0
* More reverting of r63675 per the mailing list discussions. This restoresGregory P. Smith2008-06-101-476/+476
* This reverts r63675 based on the discussion in this thread:Gregory P. Smith2008-06-091-11/+11
* Some style nits. Also clarify in the docstrings what __sizeof__ does.Georg Brandl2008-06-011-1/+1
* Issue #2898: Added sys.getsizeof() to retrieve size of objects in bytes.Robert Schuppenies2008-06-011-0/+13
* Refactor and clean up str.format() code (and helpers) in advance of optimizat...Eric Smith2008-05-301-3/+29
* Renamed bytesobject.c to bytearrayobject.cChristian Heimes2008-05-261-2878/+4675
* Renamed PyString to PyBytesChristian Heimes2008-05-261-8/+8
* First step of the C API rename:Christian Heimes2008-05-261-237/+237
* Backport fast alternate io.BytesIO implementation.Alexandre Vassalotti2008-05-091-2/+2
* Backport manually r62342 from the py3k branch to the trunk.Alexandre Vassalotti2008-04-141-17/+23
* get rid of assert (size >= 0) now that an explicit if (size < 0) is in the code.Gregory P. Smith2008-04-101-1/+0
* Raise SystemError when size < 0 is passed into PyString_FromStringAndSize,Gregory P. Smith2008-04-091-0/+5
* Fix memory leaksNeal Norwitz2008-03-271-2/+6
* Fix bytes so it works on 64-bit platforms.Neal Norwitz2008-03-271-14/+5
* Merged revisions 61750,61752,61754,61756,61760,61763,61768,61772,61775,61805,...Christian Heimes2008-03-261-0/+3374