COMMITS
/ Objects/bytesobject.c November 21, 2007
G
Rename buffer -> bytearray.
Guido van Rossum committed
November 6, 2007
G
Merging the py3k-pep3137 branch back into the py3k branch.
Guido van Rossum committed
November 3, 2007
G
Patch 1171 by mfenniak -- allow subclassing of bytes.
Guido van Rossum committed
October 26, 2007
G
Sort the method lists for str8 and bytes so differences are more apparent.
Guido van Rossum committed
G
Patch 1335 by Christian Heimes.
Guido van Rossum committed
N
Fix some Py_ssize_t warnings on Win64 that were probably bugs
Neal Norwitz committed
October 22, 2007
G
Issue 1267, continued.
Guido van Rossum committed
October 16, 2007
G
For PEP3137: Adds missing methods to the mutable PyBytes object (soon
Gregory P. Smith committed
October 9, 2007
G
Patch #1049 by Thomas Lee.
Guido van Rossum committed
September 23, 2007
September 10, 2007
G
Bug # 1125 (my code).
Guido van Rossum committed
August 31, 2007
G
Per Georg's suggestion, get rid of str.decode() (which always raises an
Guido van Rossum committed
August 30, 2007
N
Try to fix the problem on the Windows buildbot where this code:
Neal Norwitz committed
August 29, 2007
J
Make it an error to compare a bytes object and a Unicode object.
Jeremy Hylton committed
G
Commit strict str/bytes distinction.
Guido van Rossum committed
August 27, 2007
N
Make some internal functions static
Neal Norwitz committed
August 24, 2007
G
Whitespace cleanup.
Guido van Rossum committed
August 19, 2007
N
Code review of the new buffer protocol. Mostly add questions that should
Neal Norwitz committed
August 18, 2007
T
Merged in py3k-buffer branch to main line. All objects now use the buffer protocol in PEP 3118.
Travis E. Oliphant committed
August 8, 2007
G
Fix core dump in an endcase of b.strip() that I missed.
Guido van Rossum committed
August 5, 2007
M
Change PyUnicode_FromString[AndSize] to expect UTF-8.
Martin v. Löwis committed
July 21, 2007
M
Fix merge breakage.
Martin v. Löwis committed
M
Merged revisions 56467-56482 via svnmerge from
Martin v. Löwis committed
July 19, 2007
G
Fix test_pickle, by reverting the string opcodes (S, T, U) to returning
Guido van Rossum committed
July 18, 2007
M
Change Py_BuildValue to generate Unicode objects for
Martin v. Löwis committed
June 10, 2007
M
Make identifiers str (not str8) objects throughout.
Martin v. Löwis committed
May 18, 2007
W
Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirror
Walter Dörwald committed
May 9, 2007
G
The NULL pointer for empty strings turns out to be a pain.
Guido van Rossum committed
G
I don't know how come bytes.join() was a class method, but that's clearly
Guido van Rossum committed
May 8, 2007
G
repr(b"\0") should return b"\x00", not the (unusual) b"\0".
Guido van Rossum committed
May 4, 2007
G
Make all of test_bytes pass (except pickling, which is too badly busted).
Guido van Rossum committed
G
Add trailing null bytes to a few more places.
Guido van Rossum committed
G
More coding by random modification.
Guido van Rossum committed
April 13, 2007
G
Rough and dirty job -- allow concatenation of bytes and arbitrary
Guido van Rossum committed
April 12, 2007
G
Clean up trailing whitespace.
Guido van Rossum committed
April 11, 2007
G
Real pickling for bytes.
Guido van Rossum committed
April 9, 2007
G
Bytes should never equal unicode.
Guido van Rossum committed
G
For Make Benefit Glorious Nation of Backwards Compatibility,
Guido van Rossum committed
February 27, 2007
G
Fix off-by-one bug in memmove() call in bytes_insert().
Guido van Rossum committed
N
SF patch #1669633, add methods for bytes from Pete Shinners.
Neal Norwitz committed
G
Remove a few stray tabs from bytesobject.c.
Georg Brandl committed
G
Implement bytes.fromhex(), with tests.
Georg Brandl committed
February 24, 2007
G
Make bytes_repr return a string containing a b"" literal.
Georg Brandl committed
December 19, 2006
T
Implement extended slicing in bytes objects.
Thomas Wouters committed
August 23, 2006
T
Fix buglet in slice assignment of bytesobjects: assigning to b[3:0] ('stop'
Thomas Wouters committed
August 22, 2006
T
Make bytesobject raise ValueError instead of TypeError again (thanks, Nick)
Thomas Wouters committed
August 21, 2006
T
Merge current trunk into p3yk. This includes the PyNumber_Index API change,
Thomas Wouters committed
August 17, 2006
G
Completely get rid of PyClass and PyInstance.
Guido van Rossum committed
July 27, 2006
G
Get rid of most of the flags (in tp_flags) that keep track of various
Guido van Rossum committed
May 5, 2006
G
Adding bytes.join() -- a class methods that concatenates an iterable of bytes.
Guido van Rossum committed