We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74402b0 commit 450a781Copy full SHA for 450a781
test/runtests.jl
@@ -926,6 +926,9 @@ end
926
@test @pyv `$xv[-3] == 1`::Bool
927
@test @pyv `$xm[0,0] == 1`::Bool
928
@test @pyv `$xm[1,-1] == 4`::Bool
929
+ @test @pyv `$xv[::] == $xv`::Bool
930
+ @test @pyv `$xv[:2] == $([1,2])`::Bool
931
+ @test @pyv `$xv[::-2] == $([3,1])`::Bool
932
@py `$xm[0,0] = 0`
933
@test jm[1,1] == 0
934
@py `del $xv[1]`::Bool
0 commit comments