-
-
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
Excessive using statements in Sort.jl #45654
Comments
But |
I don't think |
This comment was marked as resolved.
This comment was marked as resolved.
I think we are in agreement, I edited my reply to try to clarify that. |
Opps, my fault.
What I mean is julia> Core.Compiler.Sort.Base
Core.Compiler
julia> Base.Sort.Base
Base And the long list above seems unavoidable? (Of course we can remove repetitive/unnecessary |
I'm also not sure how to avoid it
I slip that into #45222 |
Yes, this weirdness is due to Sort being included in both Base and Core.Compiler. We might be able to remove all or most of it in the future with better separate compilation support. Removing the duplicates is of course welcome. Other than that I will close this since it's not a significant problem and it will be a while before we can really address it. |
This smells bad:
There are two many symbols to read.
What's special about
>>>
and!==
?length
is listed twice.Are all these really used? Probably not.
Roughly all but 4 of these 62 symbols are imported automatical by
using Base
The text was updated successfully, but these errors were encountered: