summaryrefslogtreecommitdiff
path: root/tests/basics/bytes_construct.py
AgeCommit message (Collapse)Author
2017-03-09tests/basic: Make various tests skippable.Paul Sokolovsky
2017-03-04tests/basic: Split tests into working with small ints and not working.Paul Sokolovsky
Tests which don't work with small ints are suffixed with _intbig.py. Some of these may still work with long long ints and need to be reclassified later.
2015-09-03tests: Add tests to improve coverage of objstr.c.Damien George
2015-08-30tests: Split byteorder-dependent tests to *_endian.py's.Paul Sokolovsky
2015-08-21tests: Add more tests to improve coverage, mostly testing exceptions.Damien George
2015-02-09objstr: Fix bytes creation from array of long ints.Paul Sokolovsky
2015-01-08tests: Separate out test cases that rely on float support to float/ dir.Damien George
2014-12-04py: Allow bytes/bytearray/array to be init'd by buffer protocol objects.Damien George
Behaviour of array initialisation is subtly different for bytes, bytearray and array.array when argument has buffer protocol. This patch gets us CPython conformant (except we allow initialisation of array.array by buffer with length not a multiple of typecode).