-
Notifications
You must be signed in to change notification settings - Fork 190
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
strides is deprecated #555
Comments
I think |
Why don't make the conversion lazy (unless the arrays is representable as a "native" numpy array)? Here is my experiment on the "lazy" approach:
The array interface |
Ping here; this is also (I think) the same problem when passing a transpose:
when trying to |
This avoids the problem, by creating an additional copy of the data. using PyCall: PyObject
PyObject(x::Adjoint) = PyObject(copy(x))
PyObject(x::Transpose) = PyObject(copy(x)) Can this be added to PyCall? It would also solve JuliaPy/PyPlot.jl#380 . |
On 0.7, I can pass a reshaped range to PyCall
On 1.0, it's
Is that a PyCall issue, or a base issue?
The text was updated successfully, but these errors were encountered: