-
-
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
using
should check case of file name
#12586
Comments
Yes, this would be a very good thing to change. When searching for filenames with |
This would be very good, I think it should also be done for |
I don't think that worth the work. Making it case sensitive is only a burden to the brain: 'TimeIt', "Timeit", or "timeit"? In addition, it will encourage people to use the same name with different cases to name different packages. |
@Sisyphuss, even if we wanted to allow case insensitivity (which would be inconsistent with the rest of Julia), the problem is that the behavior is inconsistent between platforms. |
Dup of #5789. Would be nice to get this fixed. |
I accidentally typed
using hDF5
, and Julia accepted this. This should not have worked; the proper module name isHDF5
(with all upper case letters).I am using OS X with a case-insensitive file system. That is, while the case of the file name is ignored when looking for a file, the file name still has a particular case that can be checked.
I would have expected Julia to reject the command
using hDF5
by noting that yes, there is a file that can be opened under the namehDF5.jl
, but this file's name is actuallyHDF5.jl
, so it doesn't match.The text was updated successfully, but these errors were encountered: