|
sprint(show_type_name, unwrap_unionall(eltype_X).name), false # Print "Array" rather than "Array{T,N}" |
Seems the following change is reasonable:
- sprint(show_type_name, unwrap_unionall(eltype_X).name), false # Print "Array" rather than "Array{T,N}"
+ sprint(show_type_name, unwrap_unionall(eltype_X).name; context=io), false # Print "Array" rather than "Array{T,N}"
Or qualified (with module path) Array type name will be printed even if :compact => true is requested from the far out.
julia/base/arrayshow.jl
Line 584 in 3cff21e
Seems the following change is reasonable:
Or qualified (with module path) Array type name will be printed even if
:compact => trueis requested from the far out.