We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Base.show(::IO, ::T)
From the docstring of Base.show:
Base.show
The representation used by show generally includes Julia-specific formatting and type information, and should be parseable Julia code when possible.
show
Calling show on units or unitful values provided by this package does not provide parseable Julia code for the value:
julia> show(stdout, u"km/s") km s^-1 julia> show(stdout, 4u"km/s") 4 km s^-1
I'd expect something along the lines of
julia> show(stdout, u"km/s") u"km * s^-1" julia> show(stdout, 4u"km/s") 4u"km * s^-1"
Fixing this should not affect the pretty printing methods, which use show(::IO, ::MIME"text/plain", ::T).
show(::IO, ::MIME"text/plain", ::T)
The text was updated successfully, but these errors were encountered:
Duplicate of #412
Sorry, something went wrong.
No branches or pull requests
From the docstring of
Base.show
:Calling
show
on units or unitful values provided by this package does not provide parseable Julia code for the value:I'd expect something along the lines of
Fixing this should not affect the pretty printing methods, which use
show(::IO, ::MIME"text/plain", ::T)
.The text was updated successfully, but these errors were encountered: