summaryrefslogtreecommitdiff
path: root/Lib/test/test_bytes.py
Commit message (Expand)AuthorAgeFilesLines
...
* | | | | | | | Issue #24731: Fixed crash on converting objects with special methodsSerhiy Storchaka2015-11-251-0/+11
|/ / / / / / /
* | | | | | | Issue #24467: Fixed possible buffer over-read in bytearray. The bytearraySerhiy Storchaka2015-06-291-1/+18
| |_|_|_|_|/ |/| | | | |
* | | | | | Issue #23985: Fix a possible buffer overrun when deleting a slice from the fr...Antoine Pitrou2015-05-191-0/+16
| |_|_|_|/ |/| | | |
* | | | | Issue #22777: Test pickling with all protocols.Serhiy Storchaka2014-12-151-16/+17
|/ / / /
* | | | Issue #20335: bytes constructor now raises TypeError when encoding or errorsSerhiy Storchaka2014-12-021-0/+8
| |_|/ |/| |
* | | Issue #22335: Fix crash when trying to enlarge a bytearray to 0x7fffffff byte...Antoine Pitrou2014-11-021-0/+13
|/ /
* | check that exception messages are not empty (#22379)Benjamin Peterson2014-09-281-0/+1
|/
* Fix test_bytes when sys.stdin is None, for example on Windows when usingVictor Stinner2014-07-281-1/+1
* (Merge 3.3) Issue #19969: PyBytes_FromFormatV() now raises an OverflowError ifVictor Stinner2013-12-131-3/+31
|\
| * Issue #19087: Improve bytearray allocation in order to allow cheap popping of...Antoine Pitrou2013-10-051-0/+9
| * Merge 3.3.Stefan Krah2013-01-261-0/+1
| |\
| * \ #16910: merge with 3.3.Ezio Melotti2013-01-101-15/+9
| |\ \
| * | | Use OESeeror instead of os.error (#16720)Andrew Svetlov2012-12-241-1/+1
| * | | merge 3.3 (#16722)Benjamin Peterson2012-12-191-2/+21
| |\ \ \
| | * \ \ #8401: merge with 3.3.Ezio Melotti2012-11-031-25/+212
| | |\ \ \
| | | * | | Issue #15958: bytes.join and bytearray.join now accept arbitrary buffer objects.Antoine Pitrou2012-10-161-2/+21
* | | | | | Issue #19969: PyBytes_FromFormatV() now raises an OverflowError if "%c"Victor Stinner2013-12-131-0/+6
| |_|_|_|/ |/| | | |
* | | | | Adapt test_bytes for a build --without-doc-strings.Stefan Krah2013-01-261-0/+1
| |_|_|/ |/| | |
* | | | #16910: test_bytes, test_unicode, and test_userstring now work with unittest ...Ezio Melotti2013-01-101-15/+9
|/ / /
* | | try to call __bytes__ before __index__ (closes #16722)Benjamin Peterson2012-12-191-0/+6
* | | #8401: merge with 3.2.Ezio Melotti2012-11-031-23/+191
|\ \ \ | |/ / |/| / | |/
| * Issue #14288: Serialization support for builtin iterators.Kristj?n Valur J?nsson2012-04-031-0/+18
| * #14081: The sep and maxsplit parameter to str.split, bytes.split, and bytearr...Ezio Melotti2012-02-261-0/+16
| * Issue #13623: Fix a performance regression introduced by issue #12170 inVictor Stinner2011-12-181-0/+5
| * Issue #12170: The count(), find(), rfind(), index() and rindex() methodsAntoine Pitrou2011-10-201-15/+88
| * Issue #12380: PyArg_ParseTuple now accepts a bytearray for the 'c' format.Eli Bendersky2011-07-291-0/+21
| * #6780: merge with 3.2.Ezio Melotti2011-04-261-8/+43
| |\
| | * Merge with 3.2.Ezio Melotti2011-04-201-7/+7
| | |\
| | * \ MERGE: startswith and endswith don't accept None as slice index. Patch by Tor...Jesus Cea2011-04-201-8/+43
| | |\ \
| | | * | Issue #11386: Fixed the exception thrown by bytearray.pop() for empty bytearraysEli Bendersky2011-03-041-1/+1
| | | * | Issue #10516: added copy() and clear() methods to bytearrays as wellEli Bendersky2011-03-031-0/+33
| | | * | Normalize the encoding names for Latin-1 and UTF-8 toMarc-André Lemburg2011-02-251-8/+10
* | | | | #8401: assigning an int to a bytearray slice (e.g. b[3:4] = 5) now raises an ...Ezio Melotti2012-11-031-0/+18
|/ / / /
* | | | #6780: merge with 3.1.Ezio Melotti2011-04-261-0/+10
|\ \ \ \ | |_|_|/ |/| | |
| * | | #6780: fix starts/endswith error message to mention that tuples are accepted ...Ezio Melotti2011-04-261-0/+16
* | | | Use non-deprecated method name.Ezio Melotti2011-04-201-7/+7
| |/ / |/| |
* | | MERGE: startswith and endswith don't accept None as slice index. Patch by Tor...Jesus Cea2011-04-201-83/+132
|\ \ \ | |/ / |/| |
| * | Merged revisions 88735 via svnmerge fromEli Bendersky2011-03-041-1/+1
| |/
| * test_bytes: test PyBytes_FromFormat() using ctypesVictor Stinner2011-01-051-0/+21
| * remove (un)transform methodsBenjamin Peterson2010-12-121-5/+0
| * #7475: add (un)transform method to bytes/bytearray and str, add back codecs t...Georg Brandl2010-12-021-0/+5
| * #9424: Replace deprecated assert* methods in the Python test suite.Ezio Melotti2010-11-201-13/+13
| * Strengthen BytesWarning tests.Florent Xicluna2010-09-031-45/+54
| * Issue #9530: Fix undefined-behaviour-inducing overflow checks in bytes and b...Mark Dickinson2010-08-101-2/+4
| * Issue #8485: PyUnicode_FSConverter() doesn't accept bytearray object anymore,Victor Stinner2010-04-221-7/+0
| * Merged revisions 80126 via svnmerge fromBenjamin Peterson2010-04-161-0/+1
| * Merged revisions 80123-80124 via svnmerge fromBenjamin Peterson2010-04-161-8/+8
| * Clean up warnings filter use in test_bytes.Brett Cannon2010-03-201-42/+41
| * Merged revisions 79100 via svnmerge fromFlorent Xicluna2010-03-191-2/+2
| * Merged revisions 77821 via svnmerge fromMark Dickinson2010-01-291-1/+1