summaryrefslogtreecommitdiff
path: root/Lib/test/test_bytes.py
Commit message (Expand)AuthorAgeFilesLines
* Issue #29159: Fix regression in bytes(x) when x.__index__() raises Exception.INADA Naoki2017-01-061-0/+13
* Issue #28385: An error message when non-empty format spec is passed toSerhiy Storchaka2016-10-301-0/+9
|\
| * Issue #28385: An error message when non-empty format spec is passed toSerhiy Storchaka2016-10-301-0/+9
* | Remove old typo.Serhiy Storchaka2016-09-081-1/+1
* | Issue #27506: Support bytes/bytearray.translate() delete as keyword argumentMartin Panter2016-08-271-18/+31
* | Anti-registration of various ABC methods.Guido van Rossum2016-08-181-0/+30
* | Issue #27474: Unified error messages in the __contains__ method of bytes andSerhiy Storchaka2016-07-101-0/+1
* | Issue #27443: __length_hint__() of bytearray itearator no longer returnSerhiy Storchaka2016-07-031-0/+10
|\ \ | |/
| * Issue #27443: __length_hint__() of bytearray itearator no longer returnSerhiy Storchaka2016-07-031-0/+10
* | Issue #27007: The fromhex() class methods of bytes and bytearray subclassesSerhiy Storchaka2016-07-011-1/+26
* | Issue #27039: Fixed bytearray.remove() for values greater than 127.Serhiy Storchaka2016-05-161-0/+7
|\ \ | |/
| * Issue #27039: Fixed bytearray.remove() for values greater than 127.Serhiy Storchaka2016-05-161-0/+7
* | Make bytes and bytearray subclass tests compatible with base types tests.Serhiy Storchaka2016-05-121-15/+17
|\ \ | |/
| * Make bytes and bytearray subclass tests compatible with base types tests.Serhiy Storchaka2016-05-121-15/+17
| * Issue #26764: Bacported tests for bytes formatting.Serhiy Storchaka2016-04-151-26/+11
* | Issue #26766: Fix _PyBytesWriter_Finish()Victor Stinner2016-04-151-2/+2
* | Issue #26764: Fixed SystemError in bytes.__rmod__.Serhiy Storchaka2016-04-151-26/+11
* | Issue #26712: Merge string_tests cleanup from 3.5Martin Panter2016-04-101-13/+108
|\ \ | |/ |/|
| * Issue #26257: Merge buffer_tests cleanup from 3.5Martin Panter2016-04-081-9/+6
| |\
| * \ Issue #26492: Added additional tests for exhausted iterators of mutable seque...Serhiy Storchaka2016-03-301-13/+108
| |\ \
| | * \ Issue #26494: Fixed crash on iterating exhausting iterators.Serhiy Storchaka2016-03-301-13/+108
| | |\ \
| | | * \ Issue #26015: Added new tests for pickling iterators of mutable sequences.Serhiy Storchaka2016-03-061-13/+108
| | | |\ \
| | | | * \ Issue #19587: Merge test_bytes cleanup from 3.5Martin Panter2016-02-021-13/+0
| | | | |\ \
| | | | * \ \ Issue #25766: Special method __bytes__() now works in str subclasses.Serhiy Storchaka2015-12-201-0/+6
| | | | |\ \ \
| | | | * \ \ \ Issue #24731: Fixed crash on converting objects with special methodsSerhiy Storchaka2015-11-251-0/+11
| | | | |\ \ \ \
| | | | * | | | | test_bytes: new try to fix test on '%p' formatter on WindowsVictor Stinner2015-10-141-6/+16
| | | | * | | | | Optimize bytes.fromhex() and bytearray.fromhex()Victor Stinner2015-10-141-0/+14
| | | | * | | | | Fix test_bytes on WindowsVictor Stinner2015-10-141-4/+7
| | | | * | | | | Rewrite PyBytes_FromFormatV() using _PyBytesWriter APIVictor Stinner2015-10-141-12/+80
* | | | | | | | | Issue #26712: Unify (r)split, (l/r)strip tests into string_testsMartin Panter2016-04-101-87/+4
| |_|_|_|_|_|_|/ |/| | | | | | |
* | | | | | | | Issue #26257: Eliminate buffer_tests.py and fix ByteArrayAsStringTestMartin Panter2016-04-061-9/+6
|/ / / / / / /
* | | | | | | Issue #26492: Added additional tests for exhausted iterators of mutable seque...Serhiy Storchaka2016-03-301-0/+2
|/ / / / / /
* | | | | | Issue #26494: Fixed crash on iterating exhausting iterators.Serhiy Storchaka2016-03-301-0/+4
|/ / / / /
* | | | | Issue #26015: Added new tests for pickling iterators of mutable sequences.Serhiy Storchaka2016-03-061-3/+39
| |_|_|/ |/| | |
* | | | Issue #19587: Remove masked and redundant tests in test_bytesMartin Panter2016-02-021-13/+0
| |_|/ |/| |
* | | Issue #25766: Special method __bytes__() now works in str subclasses.Serhiy Storchaka2015-12-201-0/+6
| |/ |/|
* | Issue #24731: Fixed crash on converting objects with special methodsSerhiy Storchaka2015-11-251-13/+100
|\ \ | |/
| * Issue #24467: Fixed possible buffer over-read in bytearray. The bytearraySerhiy Storchaka2015-06-291-13/+100
| |\
| | * Issue #23985: Fix a possible buffer overrun when deleting a slice from the fr...Antoine Pitrou2015-05-191-0/+16
| | |\
| | * | Use assertEqual rather than assertEquals to avoid the deprecation warning.Gregory P. Smith2015-04-261-4/+4
| | * | Implements issue #9951: Adds a hex() method to bytes, bytearray, & memoryview.Gregory P. Smith2015-04-251-0/+8
| | * | Issue #23681: The -b option now affects comparisons of bytes with int.Serhiy Storchaka2015-03-201-13/+28
| | * | Issue #14203: Remove obsolete support for view==NULL in bytesiobuf_getbuffer()Stefan Krah2015-02-031-0/+4
| | * | Don't use deprecated assertEquals.Serhiy Storchaka2015-01-261-4/+4
| | * | Issue20284: Implement PEP461Ethan Furman2015-01-231-0/+44
| | * | 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/+16
| | |\ \ \
| | | * \ \ Issue #22335: Fix crash when trying to enlarge a bytearray to 0x7fffffff byte...Antoine Pitrou2014-11-021-0/+13
| | | |\ \ \
| | | * \ \ \ merge 3.4 (#22379)Benjamin Peterson2014-09-281-0/+16
| | | |\ \ \ \
| | | | * | | | Issue #22077: Improve index error messages for bytearrays, bytes, lists, andTerry Jan Reedy2014-08-021-0/+16