tests: Add small testcase for 3-arg slices.

This commit is contained in:
Paul Sokolovsky 2014-05-25 22:17:06 +03:00
parent d8675541a9
commit d07bf029b7
1 changed files with 5 additions and 0 deletions

View File

@ -2,3 +2,8 @@ x = list(range(10))
print(x[::-1])
print(x[::2])
print(x[::-2])
x = list(range(9))
print(x[::-1])
print(x[::2])
print(x[::-2])