COMMITS
/ Objects/bytesobject.c August 13, 2013
A
Issue #18722: Remove uses of the "register" keyword in C code.
Antoine Pitrou committed
February 10, 2013
S
Issue #12983: Bytes literals with invalid \x escape now raise a SyntaxError
Serhiy Storchaka committed
S
Issue #12983: Bytes literals with invalid \x escape now raise a SyntaxError
Serhiy Storchaka committed
S
Issue #12983: Bytes literals with invalid \x escape now raise a SyntaxError
Serhiy Storchaka committed
February 2, 2013
S
Issue #17034: Use Py_CLEAR() in bytesobject.c.
Serhiy Storchaka committed
S
Issue #17034: Use Py_CLEAR() in bytesobject.c.
Serhiy Storchaka committed
S
Issue #17034: Use Py_CLEAR() in bytesobject.c.
Serhiy Storchaka committed
January 25, 2013
S
Issue #16975: Fix error handling bug in the escape-decode bytes decoder.
Serhiy Storchaka committed
S
Issue #16975: Fix error handling bug in the escape-decode bytes decoder.
Serhiy Storchaka committed
S
Issue #16975: Fix error handling bug in the escape-decode bytes decoder.
Serhiy Storchaka committed
December 19, 2012
B
merge 3.3 (#16722)
Benjamin Peterson committed
B
try to call __bytes__ before __index__ (closes #16722)
Benjamin Peterson committed
December 11, 2012
G
Fix the internals of our hash functions to used unsigned values during hash
Gregory P. Smith committed
December 7, 2012
C
Issue #16495: remove extraneous NULL encoding check from bytes_decode().
Chris Jerdonek committed
October 16, 2012
A
Issue #15958: bytes.join and bytearray.join now accept arbitrary buffer objects.
Antoine Pitrou committed
October 6, 2012
A
Issue #16148: implemented PEP 424
Armin Ronacher committed
July 28, 2012
S
Issue #12834: Fix PyBuffer_ToContiguous() for non-contiguous arrays.
Stefan Krah committed
May 25, 2012
L
Issue #14889: PyBytes_FromObject(bytes) now just increfs and returns.
Larry Hastings committed
April 27, 2012
V
Simplify and optimize formatlong()
Victor Stinner committed
V
Check newly created consistency using _PyUnicode_CheckConsistency(str, 1)
Victor Stinner committed
April 9, 2012
B
merge 3.1 (#14509)
Benjamin Peterson committed
B
fix build without Py_DEBUG and DNDEBUG (closes #14509)
Benjamin Peterson committed
April 4, 2012
A
Rename _PyIter_GetBuiltin to _PyObject_GetBuiltin, and do not include it in the stable ABI.
Antoine Pitrou committed
April 3, 2012
K
Issue #14288: Serialization support for builtin iterators.
Kristján Valur Jónsson committed
February 26, 2012
February 21, 2012
B
ensure no one tries to hash things before the random seed is found
Benjamin Peterson committed
February 20, 2012
G
G
Issue #13703: add a way to randomize the hash values of basic types (str, bytes, datetime)
Georg Brandl committed
January 22, 2012
G
merge with 3.2
Georg Brandl committed
G
Fix #13834: strip() strips leading and trailing whitespace.
Georg Brandl committed
January 14, 2012
G
Consolidate the occurrances of the prime used as the multiplier when hashing
Gregory P. Smith committed
December 17, 2011
V
Issue #11231: Fix bytes and bytearray docstrings
Victor Stinner committed
V
Issue #11231: Fix bytes and bytearray docstrings
Victor Stinner committed
November 21, 2011
A
Issue #13411: memoryview objects are now hashable when the underlying object is hashable.
Antoine Pitrou committed
V
Fix misuse of PyUnicode_GET_SIZE() => PyUnicode_GET_LENGTH()
Victor Stinner committed
October 20, 2011
A
Issue #12170: The count(), find(), rfind(), index() and rindex() methods
Antoine Pitrou committed
October 14, 2011
V
Issue #13088: Add shared Py_hexdigits constant to format a number into base 16
Victor Stinner committed
September 29, 2011
V
Fix hex_digit_to_int() prototype: expect Py_UCS4, not Py_UNICODE
Victor Stinner committed
September 28, 2011
M
Implement PEP 393.
Martin v. Löwis committed
September 24, 2011
M
July 27, 2011
S
S
Fix closes Issue12621 - Fix docstrings of find and rfind methods of bytes/bytearry/unicodeobject.
Senthil Kumaran committed
April 26, 2011
E
#6780: merge with 3.2.
Ezio Melotti committed
E
#6780: merge with 3.1.
Ezio Melotti committed
E
#6780: fix starts/endswith error message to mention that tuples are accepted too.
Ezio Melotti committed
April 20, 2011
J
J