We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f7c3b61 commit 423d38bCopy full SHA for 423d38b
src/jlwrap/objectarray.jl
@@ -25,7 +25,7 @@ PyObjectArray(x::AbstractArray{T,N}) where {T,N} = PyObjectArray{N}(x)
25
26
pyobjectarray_finalizer(x::PyObjectArray) = GC.enqueue_all(x.ptrs)
27
28
-Base.IndexStyle(x) = Base.IndexStyle(x.ptrs)
+Base.IndexStyle(x::PyObjectArray) = Base.IndexStyle(x.ptrs)
29
30
Base.length(x::PyObjectArray) = length(x.ptrs)
31
0 commit comments