Enable py::ellipsis on Python 2 (#2360)

* Enable py::ellipsis on Python 2

* Enable py::ellipsis tests on Python 2 and mention `Ellipsis` in the docs
This commit is contained in:
Yannick Jadoul
2020-08-04 14:45:55 +02:00
committed by GitHub
parent 1caf1d0613
commit 3e448c0b5e
4 changed files with 5 additions and 10 deletions

View File

@@ -431,7 +431,6 @@ def test_array_create_and_resize(msg):
assert(np.all(a == 42.))
@pytest.unsupported_on_py2
def test_index_using_ellipsis():
a = m.index_using_ellipsis(np.zeros((5, 6, 7)))
assert a.shape == (6,)