diff options
author | Damien George <damien.p.george@gmail.com> | 2014-02-02 13:13:29 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-02-02 13:13:29 +0000 |
commit | 09e1f43200ec28082456042a58d9f39f483f3ad0 (patch) | |
tree | a61fff4a0fbad891177d64bf311c9cb0882b4e1b /tests/basics/list1.py | |
parent | cd82e02e84df5f9f2f3082d865beae25217af2a1 (diff) | |
parent | ea2509d92cbb222854ceb0b323b616b807dd221b (diff) | |
download | micropython-09e1f43200ec28082456042a58d9f39f483f3ad0.tar.gz micropython-09e1f43200ec28082456042a58d9f39f483f3ad0.zip |
Merge branch 'master' of github.com:micropython/micropython
Diffstat (limited to 'tests/basics/list1.py')
-rw-r--r-- | tests/basics/list1.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/basics/list1.py b/tests/basics/list1.py index 250a12b704..8dc3939dd6 100644 --- a/tests/basics/list1.py +++ b/tests/basics/list1.py @@ -16,3 +16,7 @@ print(x) x += [2, 1] print(x) + +print(x[1:]) +print(x[:-1]) +print(x[2:3]) |