-
-
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
ERROR: Module Collections not found in current path. #18989
Comments
I believe this is intentional. The error message could be better though. |
@yuyichao why is not good idea to allow the |
Use
They are. |
Sorry, reformulating my question: why are they not rightly available like Array() or Dict()? I would say that PriorityQueue could be in the global namespace. |
Well, isdefined(current_module(), :AttemptedName) && isa(current_module().AttemptedName, Module) and add |
Because we cannot put everything anyone ever find use full to be in global namespace. This might even be a good candidate to be moved out if it is not used in base. |
Ref #18497 |
The other side of this is that Base exports |
In Julia v0.5 I can do:
but I cannot load the module:
using Collections
The text was updated successfully, but these errors were encountered: