-
Notifications
You must be signed in to change notification settings - Fork 48
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
Fix show() method to reshape a copy #328
Comments
Won't change this without clearer justification: what's the error on Juno and why can't it be fixed within Juno? |
This isn't a Juno specific issue:
|
I'd suggest julia> a = [1,2]
2-element Array{Int64,1}:
1
2
julia> b = transpose(a)
1×2 LinearAlgebra.Transpose{Int64,Array{Int64,1}}:
1 2
julia> push!(a, 3)
3-element Array{Int64,1}:
1
2
3 Though I guess colors don't support transpose, so make that PR welcome. |
Want to try a pull request? The answer is right above you, just needs someone to push it over the finish line. |
Sure! ☝️ |
Per discussion in Slack with @pfitzseb in #juno-bridged on slack, there's an issue with the
show()
method that causes weird errors in Juno. He suggested that this line should instead be:The text was updated successfully, but these errors were encountered: