summaryrefslogtreecommitdiffstats
path: root/Objects/bytesobject.c
Commit message (Expand)AuthorAgeFilesLines
...
* Fix off-by-one bug in memmove() call in bytes_insert().Guido van Rossum2007-02-271-1/+1
* SF patch #1669633, add methods for bytes from Pete Shinners.Neal Norwitz2007-02-271-1/+1556
* Remove a few stray tabs from bytesobject.c.Georg Brandl2007-02-271-30/+30
* Implement bytes.fromhex(), with tests.Georg Brandl2007-02-271-10/+76
* Make bytes_repr return a string containing a b"" literal.Georg Brandl2007-02-241-54/+52
* Implement extended slicing in bytes objects.Thomas Wouters2006-12-191-16/+217
* Fix buglet in slice assignment of bytesobjects: assigning to b[3:0] ('stop'Thomas Wouters2006-08-231-0/+2
* Make bytesobject raise ValueError instead of TypeError again (thanks, Nick)Thomas Wouters2006-08-221-4/+4
* Merge current trunk into p3yk. This includes the PyNumber_Index API change,Thomas Wouters2006-08-211-5/+4
* Completely get rid of PyClass and PyInstance.Guido van Rossum2006-08-171-8/+1
* Get rid of most of the flags (in tp_flags) that keep track of variousGuido van Rossum2006-07-271-3/+4
* Adding bytes.join() -- a class methods that concatenates an iterable of bytes.Guido van Rossum2006-05-051-2/+65
* Optimizations for bytes reallocation.Guido van Rossum2006-05-051-11/+53
* Implement bytes += bytes, bytes *= int, int in bytes, bytes in bytes.Guido van Rossum2006-04-271-5/+94
* Added much functionality to the bytes type.Guido van Rossum2006-04-241-168/+462
* Fix a leak and a buglet discovered by Thomas.Guido van Rossum2006-04-231-1/+2
* Here is a bytes type. It's very minimal but it's a start.Guido van Rossum2006-04-221-0/+373