diff options
author | Damien George <damien.p.george@gmail.com> | 2014-04-08 18:29:50 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-04-08 18:29:50 +0100 |
commit | 134c10e776a5d75cfdd6bf98697cb50d7da7adf6 (patch) | |
tree | 31eef85b9103ecc747353fe3703f751b000bafa8 /tests | |
parent | 47e1b85d9c2e87aad8396da8b2c492157deaaf3a (diff) | |
parent | f898a95cbaa9046da4e50b500d13b1765d67a94d (diff) | |
download | micropython-134c10e776a5d75cfdd6bf98697cb50d7da7adf6.tar.gz micropython-134c10e776a5d75cfdd6bf98697cb50d7da7adf6.zip |
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 3111832f6c..201b5b6590 100644 --- a/tests/basics/bytearray1.py +++ b/tests/basics/bytearray1.py @@ -1,3 +1,4 @@ +print(bytearray(4)) a = bytearray([1, 2, 200]) print(a[0], a[2]) print(a[-1]) |