-
Notifications
You must be signed in to change notification settings - Fork 134
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
Add hierarchy wildcard **
to Resolver.glob()
#4
Comments
This is the intended behaviour here. The
Just use an iterator with a filter, which does the
Or with wildcard matching:
I would change this ticket into a feature request for hierarchy wildcard HTH |
Yes, I used iterator instead. in that case - what's the difference between glob and iterator? |
The
If you just want to have the first three level, you can invoke
Anyway. An iterator with a maxlevel is more elegant:
|
**
to Resolver.glob()
**
to Resolver.glob()**
to Resolver.glob()
This would be very handy, indeed!
I think, it should also allowed to be empty, i.e. match the root. |
Version 2.1.1 - glob returns only the closest children:
Will return only child_1 and child_2
The text was updated successfully, but these errors were encountered: