-
Notifications
You must be signed in to change notification settings - Fork 82
glob does not accept non-unicode patterns #58
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
Comments
@droundy I think this might be a dupe of #23? The |
I don't think it's a dupe of #23, since this would be about creating a glob with non-utf8 content, e.g. if I wanted to enable user provided globs, git does with .gitignore. |
Ah, I had been tricked be the title. Yes, this is a dupe. |
The
str
input of glob precludes its use with user-defined patterns that may be non-unicode. The package seems to strongly reject the idea that there might be other filenames out there that might need to be matched against. Perhaps there should be a separate package for globbing withOsStr
?The text was updated successfully, but these errors were encountered: