Skip to content

Commit 55ab3e8

Browse files
authoredAug 11, 2017
fix array printing when small number of rows (#23112)
1 parent 9c8d46c commit 55ab3e8

File tree

2 files changed

+46
-5
lines changed

2 files changed

+46
-5
lines changed
 

‎base/show.jl

+18-5
Original file line numberDiff line numberDiff line change
@@ -1585,11 +1585,11 @@ function print_matrix(io::IO, X::AbstractVecOrMat,
15851585
print(io, i == first(rowsA) ? pre : presp)
15861586
print_matrix_row(io, X,A,i,colsA,sep)
15871587
print(io, i == last(rowsA) ? post : postsp)
1588-
if i != rowsA[end]; println(io); end
1588+
if i != rowsA[end] || i == rowsA[halfheight]; println(io); end
15891589
if i == rowsA[halfheight]
15901590
print(io, i == first(rowsA) ? pre : presp)
15911591
print_matrix_vdots(io, vdots,A,sep,vmod,1)
1592-
println(io, i == last(rowsA) ? post : postsp)
1592+
print(io, i == last(rowsA) ? post : postsp * '\n')
15931593
end
15941594
end
15951595
else # neither rows nor cols fit, so use all 3 kinds of dots
@@ -1604,16 +1604,22 @@ function print_matrix(io::IO, X::AbstractVecOrMat,
16041604
print(io, (i - first(rowsA)) % hmod == 0 ? hdots : repeat(" ", length(hdots)))
16051605
print_matrix_row(io, X,Ralign,i,n-length(Ralign)+colsA,sep)
16061606
print(io, i == last(rowsA) ? post : postsp)
1607-
if i != rowsA[end]; println(io); end
1607+
if i != rowsA[end] || i == rowsA[halfheight]; println(io); end
16081608
if i == rowsA[halfheight]
16091609
print(io, i == first(rowsA) ? pre : presp)
16101610
print_matrix_vdots(io, vdots,Lalign,sep,vmod,1)
16111611
print(io, ddots)
16121612
print_matrix_vdots(io, vdots,Ralign,sep,vmod,r)
1613-
println(io, i == last(rowsA) ? post : postsp)
1613+
print(io, i == last(rowsA) ? post : postsp * '\n')
16141614
end
16151615
end
16161616
end
1617+
if isempty(rowsA)
1618+
print(io, pre)
1619+
print(io, vdots)
1620+
length(colsA) > 1 && print(io, " ", ddots)
1621+
print(io, post)
1622+
end
16171623
end
16181624
end
16191625

@@ -1760,7 +1766,14 @@ function showarray(io::IO, X::AbstractArray, repr::Bool = true; header = true)
17601766
end
17611767
(!repr && header) && print(io, summary(X))
17621768
if !isempty(X)
1763-
(!repr && header) && println(io, ":")
1769+
if !repr && header
1770+
print(io, ":")
1771+
if get(io, :limit, false) && displaysize(io)[1]-4 <= 0
1772+
return print(io, "")
1773+
else
1774+
println(io)
1775+
end
1776+
end
17641777
if ndims(X) == 0
17651778
if isassigned(X)
17661779
return show(io, X[])

‎test/show.jl

+28
Original file line numberDiff line numberDiff line change
@@ -919,3 +919,31 @@ end
919919
@test replstr(zeros(Complex{Int}, 1, 2, 1)) ==
920920
"1×2×1 Array{Complex{$Int},3}:\n[:, :, 1] =\n 0+0im 0+0im"
921921
end
922+
923+
@testset "Array printing with limited rows" begin
924+
arrstr = let buf = IOBuffer()
925+
function (A, rows)
926+
Base.showarray(IOContext(buf, displaysize=(rows, 80), limit=true),
927+
A, false, header=true)
928+
String(take!(buf))
929+
end
930+
end
931+
A = Int64[1]
932+
@test arrstr(A, 4) == "1-element Array{Int64,1}: …"
933+
@test arrstr(A, 5) == "1-element Array{Int64,1}:\n 1"
934+
push!(A, 2)
935+
@test arrstr(A, 5) == "2-element Array{Int64,1}:\n"
936+
@test arrstr(A, 6) == "2-element Array{Int64,1}:\n 1\n 2"
937+
push!(A, 3)
938+
@test arrstr(A, 6) == "3-element Array{Int64,1}:\n 1\n"
939+
940+
@test arrstr(zeros(4, 3), 4) == "4×3 Array{Float64,2}: …"
941+
@test arrstr(zeros(4, 30), 4) == "4×30 Array{Float64,2}: …"
942+
@test arrstr(zeros(4, 3), 5) == "4×3 Array{Float64,2}:\n ⋮ ⋱ "
943+
@test arrstr(zeros(4, 30), 5) == "4×30 Array{Float64,2}:\n ⋮ ⋱ "
944+
@test arrstr(zeros(4, 3), 6) == "4×3 Array{Float64,2}:\n 0.0 0.0 0.0\n"
945+
@test arrstr(zeros(4, 30), 6) ==
946+
string("4×30 Array{Float64,2}:\n",
947+
" 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 … 0.0 0.0 0.0 0.0 0.0 0.0 0.0\n",
948+
" ⋮ ⋮ ⋱ ⋮ ")
949+
end

0 commit comments

Comments
 (0)
Please sign in to comment.