summaryrefslogtreecommitdiffstats
path: root/Objects/bytesobject.c
Commit message (Expand)AuthorAgeFilesLines
* Try to fix the problem on the Windows buildbot where this code:Neal Norwitz2007-08-301-1/+1
* Make it an error to compare a bytes object and a Unicode object.Jeremy Hylton2007-08-291-2/+8
* Commit strict str/bytes distinction.Guido van Rossum2007-08-291-61/+49
* Make some internal functions staticNeal Norwitz2007-08-271-3/+3
* Whitespace cleanup.Guido van Rossum2007-08-241-10/+10
* Code review of the new buffer protocol. Mostly add questions that shouldNeal Norwitz2007-08-191-0/+1
* Merged in py3k-buffer branch to main line. All objects now use the buffer pr...Travis E. Oliphant2007-08-181-96/+161
* Fix core dump in an endcase of b.strip() that I missed.Guido van Rossum2007-08-081-1/+4
* Change PyUnicode_FromString[AndSize] to expect UTF-8.Martin v. Löwis2007-08-051-5/+7
* Fix merge breakage.Martin v. Löwis2007-07-211-6/+6
* Merged revisions 56467-56482 via svnmerge fromMartin v. Löwis2007-07-211-66/+65
* Fix test_pickle, by reverting the string opcodes (S, T, U) to returningGuido van Rossum2007-07-191-5/+3
* Change Py_BuildValue to generate Unicode objects forMartin v. Löwis2007-07-181-0/+3
* Make identifiers str (not str8) objects throughout.Martin v. Löwis2007-06-101-1/+1
* Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirrorWalter Dörwald2007-05-181-13/+15
* The NULL pointer for empty strings turns out to be a pain.Guido van Rossum2007-05-091-1/+4
* I don't know how come bytes.join() was a class method, but that's clearlyGuido van Rossum2007-05-091-5/+12
* repr(b"\0") should return b"\x00", not the (unusual) b"\0".Guido van Rossum2007-05-081-1/+1
* Make all of test_bytes pass (except pickling, which is too badly busted).Guido van Rossum2007-05-041-19/+11
* Add trailing null bytes to a few more places.Guido van Rossum2007-05-041-8/+12
* More coding by random modification.Guido van Rossum2007-05-041-8/+18
* Rough and dirty job -- allow concatenation of bytes and arbitraryGuido van Rossum2007-04-131-59/+165
* Clean up trailing whitespace.Guido van Rossum2007-04-121-18/+18
* Real pickling for bytes.Guido van Rossum2007-04-111-1/+14
* Bytes should never equal unicode.Guido van Rossum2007-04-091-1/+6
* For Make Benefit Glorious Nation of Backwards Compatibility,Guido van Rossum2007-04-091-10/+33
* 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