summaryrefslogtreecommitdiffstatshomepage
path: root/tests/basics/bytearray_construct.py
Commit message (Collapse)AuthorAge
* py: Allow bytes/bytearray/array to be init'd by buffer protocol objects.Damien George2014-12-04
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).