diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-04-08 22:09:14 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-04-08 22:11:40 +0300 |
commit | 4dcb605ac403c99390ba3ce6fab01fa8c52b3dd0 (patch) | |
tree | 6f78508c3306fac1ad1dce2b0c69d255bcb8af77 /tests | |
parent | 134c10e776a5d75cfdd6bf98697cb50d7da7adf6 (diff) |
py: Make bytearray a proper type.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/basics/bytearray1.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/basics/bytearray1.py b/tests/basics/bytearray1.py index 201b5b659..e564165b9 100644 --- a/tests/basics/bytearray1.py +++ b/tests/basics/bytearray1.py @@ -1,5 +1,6 @@ print(bytearray(4)) a = bytearray([1, 2, 200]) +print(type(a)) print(a[0], a[2]) print(a[-1]) print(a) |