diff options
| author | Damien George <damien.p.george@gmail.com> | 2019-10-29 21:25:38 +1100 |
|---|---|---|
| committer | Damien George <damien.p.george@gmail.com> | 2019-10-29 22:22:37 +1100 |
| commit | 9162a87d4d21ce7f682e5d4ae7703fa1b13f45e9 (patch) | |
| tree | 41a815987cd8ad9110d7e52e65a1a6b76ca5be6e /tests/basics/subclass_native_buffer.py | |
| parent | aeea204e9802d6a175d94bdb03de428b5f1c74d1 (diff) | |
tests/basics: Use bytes not bytearray when checking user buffer proto.
Using bytes will test the same path for the buffer protocol in
py/objtype.c.
Diffstat (limited to 'tests/basics/subclass_native_buffer.py')
| -rw-r--r-- | tests/basics/subclass_native_buffer.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/basics/subclass_native_buffer.py b/tests/basics/subclass_native_buffer.py index 43c381965..00717a70e 100644 --- a/tests/basics/subclass_native_buffer.py +++ b/tests/basics/subclass_native_buffer.py @@ -12,5 +12,5 @@ print(b1 + b2) print(b1 + b3) print(b3 + b1) -# bytearray construction will use the buffer protocol -print(bytearray(b1)) +# bytes construction will use the buffer protocol +print(bytes(b1)) |
