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 | |
| parent | 1d24ea5207ba4b62b20dbba22ab2800496418463 (diff) | |
| parent | 4dcb605ac403c99390ba3ce6fab01fa8c52b3dd0 (diff) | |
Merge branch 'master' of github.com:micropython/micropython
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) | 
