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 28b440c commit 194f171Copy full SHA for 194f171
src/JlWrap/objectarray.jl
@@ -8,7 +8,7 @@ PyObjectArray{N}(x::AbstractArray{T,N}) where {T,N} =
8
copyto!(PyObjectArray{N}(undef, size(x)), x)
9
PyObjectArray(x::AbstractArray{T,N}) where {T,N} = PyObjectArray{N}(x)
10
11
-pyobjectarray_finalizer(x::PyObjectArray) = GC.enqueue_all(C.PyPtr, x.ptrs)
+pyobjectarray_finalizer(x::PyObjectArray) = GC.enqueue_all(x.ptrs)
12
13
Base.IndexStyle(x::PyObjectArray) = Base.IndexStyle(x.ptrs)
14
0 commit comments