Open
Description
As discussed on julia-users, the two pathways to converting a Python list to a Vector{Int}
seem mysteriously different in performance. For example:
iv = PyVector(rand(Int16, 10^6))
@time copy!(Array(Int, length(iv)), iv);
@time convert(Vector{Int}, iv.o);
yields 3-5× slower performance for the second version on my machine.