From 67ad2641258c5331eecbe3aefe6d9db1b686ee31 Mon Sep 17 00:00:00 2001 From: Rick Winfrey Date: Wed, 12 Jul 2017 15:34:17 -0700 Subject: [PATCH] Add slice test fixtures --- test/fixtures/python/slice.A.py | 4 ++++ test/fixtures/python/slice.B.py | 4 ++++ 2 files changed, 8 insertions(+) create mode 100644 test/fixtures/python/slice.A.py create mode 100644 test/fixtures/python/slice.B.py diff --git a/test/fixtures/python/slice.A.py b/test/fixtures/python/slice.A.py new file mode 100644 index 000000000..ff9be6416 --- /dev/null +++ b/test/fixtures/python/slice.A.py @@ -0,0 +1,4 @@ +a[:] +b[5:] +b[5:6, ...] +c[::] diff --git a/test/fixtures/python/slice.B.py b/test/fixtures/python/slice.B.py new file mode 100644 index 000000000..96c2a8713 --- /dev/null +++ b/test/fixtures/python/slice.B.py @@ -0,0 +1,4 @@ +c[4:5, ...] +a[:] +d[3:] +e[::]