You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in simple case (not contains . and .., only follow single path element by double star), iterate whole child directories and match these paths with glob pattern
(in naive globstar implementation, recursively call normal glob function, so opendir is called N^2 times of path depth)
in simple case (not contains
.
and..
, only follow single path element by double star), iterate whole child directories and match these paths with glob pattern(in naive globstar implementation, recursively call normal glob function, so
opendir
is called N^2 times of path depth)see python/cpython#102613
The text was updated successfully, but these errors were encountered: