diff options
author | Damien George <damien.p.george@gmail.com> | 2014-04-08 21:13:04 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-04-08 21:13:04 +0100 |
commit | 4671392d90e98ea4edf6e9ce7023d21cc9957d8c (patch) | |
tree | 4f70ac602368c818594b6623f5d2929bab5f1f08 /tests/basics/bytearray1.py | |
parent | 1d24ea5207ba4b62b20dbba22ab2800496418463 (diff) | |
parent | 4dcb605ac403c99390ba3ce6fab01fa8c52b3dd0 (diff) | |
download | micropython-4671392d90e98ea4edf6e9ce7023d21cc9957d8c.tar.gz micropython-4671392d90e98ea4edf6e9ce7023d21cc9957d8c.zip |
Merge branch 'master' of github.com:micropython/micropython
Diffstat (limited to 'tests/basics/bytearray1.py')
-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 201b5b6590..e564165b9f 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) |