152 Commits (c19bb3279cbb42c84a24255db48ee2d385bb8167)

Author SHA1 Message Date
Serhiy Storchaka 7b6e3b91f5 Issue #24467: Fixed possible buffer over-read in bytearray. The bytearray 11 years ago
Antoine Pitrou 2545411e28 Issue #23985: Fix a possible buffer overrun when deleting a slice from the front of a bytearray and then appending some other bytes data. 11 years ago
Gregory P. Smith 32d34bcf1d Use assertEqual rather than assertEquals to avoid the deprecation warning. 11 years ago
Gregory P. Smith 8cb6569fe1 Implements issue #9951: Adds a hex() method to bytes, bytearray, & memoryview. 11 years ago
Serhiy Storchaka 1dd49824df Issue #23681: The -b option now affects comparisons of bytes with int. 11 years ago
Stefan Krah 650c1e818d Issue #14203: Remove obsolete support for view==NULL in bytesiobuf_getbuffer() 11 years ago
Serhiy Storchaka 4e1942bcd8 Don't use deprecated assertEquals. 11 years ago
Ethan Furman b95b56150f Issue20284: Implement PEP461 11 years ago
Serhiy Storchaka bad1257c96 Issue #22777: Test pickling with all protocols. 11 years ago
Serhiy Storchaka 83cf99d733 Issue #20335: bytes constructor now raises TypeError when encoding or errors 11 years ago
Antoine Pitrou cc23154d02 Issue #22335: Fix crash when trying to enlarge a bytearray to 0x7fffffff bytes on a 32-bit platform. 12 years ago
Benjamin Peterson c31f12d196 check that exception messages are not empty (#22379) 12 years ago
Terry Jan Reedy ffff1440d1 Issue #22077: Improve index error messages for bytearrays, bytes, lists, and 12 years ago
Victor Stinner 7611964b2c Fix test_bytes when sys.stdin is None, for example on Windows when using 12 years ago
Victor Stinner c9362cf86a Issue #19969: PyBytes_FromFormatV() now raises an OverflowError if "%c" 12 years ago
Antoine Pitrou 5df8a8a1fd Issue #19087: Improve bytearray allocation in order to allow cheap popping of data at the front (slice deletion). 13 years ago
Serhiy Storchaka 9d0add0c7e Issue #17041: Fix testing when Python is configured with the 13 years ago
Stefan Krah 4216aa1e52 Adapt test for build --without-doc-strings. 13 years ago
Stefan Krah 6e572b8b2e Adapt test_bytes for a build --without-doc-strings. 13 years ago
Ezio Melotti 0dceb560b6 #16910: test_bytes, test_unicode, and test_userstring now work with unittest test discovery. Patch by Zachary Ware. 13 years ago
Andrew Svetlov 8b33dd8e54 Use OESeeror instead of os.error (#16720) 13 years ago
Benjamin Peterson 5ff3f73d94 try to call __bytes__ before __index__ (closes #16722) 13 years ago
Ezio Melotti c64bcbec4b #8401: assigning an int to a bytearray slice (e.g. b[3:4] = 5) now raises an error. 14 years ago
Ezio Melotti 67dc4a87fc #8401: assigning an int to a bytearray slice (e.g. b[3:4] = 5) now raises an error. 14 years ago
Antoine Pitrou cfc22b4a9b Issue #15958: bytes.join and bytearray.join now accept arbitrary buffer objects. 14 years ago
Kristján Valur Jónsson 31668b8f7a Issue #14288: Serialization support for builtin iterators. 14 years ago
Ezio Melotti cda6b6d60d #14081: The sep and maxsplit parameter to str.split, bytes.split, and bytearray.split may now be passed as keyword arguments. 14 years ago
Victor Stinner f8eac00779 Issue #13623: Fix a performance regression introduced by issue #12170 in 14 years ago
Antoine Pitrou ac65d96777 Issue #12170: The count(), find(), rfind(), index() and rindex() methods 15 years ago
Eli Bendersky 906b88fb2a Issue #12380: PyArg_ParseTuple now accepts a bytearray for the 'c' format. 15 years ago
Ezio Melotti ba42fd5801 #6780: fix starts/endswith error message to mention that tuples are accepted too. 15 years ago
Ezio Melotti af92842bf9 Use non-deprecated method name. 15 years ago
Jesus Cea ac4515063c startswith and endswith don't accept None as slice index. Patch by Torsten Becker. (closes #11828) 15 years ago
Jesus Cea 44e81687a2 startswith and endswith don't accept None as slice index. Patch by Torsten Becker. (closes #11828) 15 years ago
Eli Bendersky 680e6eb54f Merged revisions 88735 via svnmerge from 15 years ago
Eli Bendersky e0c8635d89 Merged revisions 88735 via svnmerge from 15 years ago
Eli Bendersky 1bc4f193d8 Issue #11386: Fixed the exception thrown by bytearray.pop() for empty bytearrays 15 years ago
Eli Bendersky 4db28d3343 Issue #10516: added copy() and clear() methods to bytearrays as well 15 years ago
Marc-André Lemburg 8f36af7a4c Normalize the encoding names for Latin-1 and UTF-8 to 15 years ago
Victor Stinner 29e762c941 test_bytes: test PyBytes_FromFormat() using ctypes 15 years ago
Benjamin Peterson 28a4dce6a8 remove (un)transform methods 15 years ago
Georg Brandl 02524629f3 #7475: add (un)transform method to bytes/bytearray and str, add back codecs that can be used with them from Python 2. 15 years ago
Ezio Melotti 2623a37852 Merged revisions 86596 via svnmerge from 16 years ago
Ezio Melotti 19f2aeba67 Merged revisions 86596 via svnmerge from 16 years ago
Ezio Melotti b3aedd4862 #9424: Replace deprecated assert* methods in the Python test suite. 16 years ago
Florent Xicluna 9b90cd1f7b Merged revisions 84470-84471,84566-84567,84759 via svnmerge from 16 years ago
Florent Xicluna edf5f0ddc0 Strengthen BytesWarning tests. 16 years ago
Mark Dickinson cf940c701f Issue #9530: Fix undefined-behaviour-inducing overflow checks in bytes and bytearray implementations. 16 years ago
Victor Stinner dcb2403022 Issue #8485: PyUnicode_FSConverter() doesn't accept bytearray object anymore, 16 years ago
Benjamin Peterson 0ff8a505c6 Merged revisions 80125,80128,80130 via svnmerge from 16 years ago