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? 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
names
as
hello_world does not show when calling names when using the following import syntax, but the original name (archive_artifact) does:
hello_world
archive_artifact
julia> module A import Pkg: Artifacts.archive_artifact as hello_world end; julia> names(A; imported=true, all=true) 6-element Vector{Symbol}: Symbol("#eval") Symbol("#include") :A :archive_artifact :eval :include
This case works as expected:
julia> module B import Pkg as pip end; julia> names(B; imported=true, all=true) 6-element Vector{Symbol}: Symbol("#eval") Symbol("#include") :B :eval :include :pip
The text was updated successfully, but these errors were encountered:
names()
Successfully merging a pull request may close this issue.
hello_world
does not show when callingnames
when using the following import syntax, but the original name (archive_artifact
) does:This case works as expected:
The text was updated successfully, but these errors were encountered: