-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
display(::Array{Array}) could use more newlines #8657
Labels
good first issue
Indicates a good issue for first-time contributors to Julia
Comments
Like this? julia> Array[[1 2] [3 4]]
1x2 Array{Array{T,N},2}:
1x2 Array{Int64,2}:
1 2
1x2 Array{Int64,2}:
3 4 On another note, nested indentation would be cool. Then we'd get: julia> Array[[1 2] [3 4]]
1x2 Array{Array{T,N},2}:
1x2 Array{Int64,2}:
1 2
1x2 Array{Int64,2}:
3 4 |
ihnorton
added
the
good first issue
Indicates a good issue for first-time contributors to Julia
label
May 8, 2015
JeffBezanson
removed
the
io
Involving the I/O subsystem: libuv, read, write, etc.
label
Jul 10, 2015
This seems to have been fixed? |
Yes
|
fixed by #17113 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I feel that an extra newline before the second
1x2 Array{Int64,2}:
block would be more readable:The text was updated successfully, but these errors were encountered: