1
1
mirror of https://github.com/github/semantic.git synced 2024-12-01 00:33:59 +03:00

Add slice test fixtures

This commit is contained in:
Rick Winfrey 2017-07-12 15:34:17 -07:00
parent 91d15699ce
commit 67ad264125
2 changed files with 8 additions and 0 deletions

4
test/fixtures/python/slice.A.py vendored Normal file
View File

@ -0,0 +1,4 @@
a[:]
b[5:]
b[5:6, ...]
c[::]

4
test/fixtures/python/slice.B.py vendored Normal file
View File

@ -0,0 +1,4 @@
c[4:5, ...]
a[:]
d[3:]
e[::]