Lines Matching refs:recursive
13 def glob(pathname, *, root_dir=None, dir_fd=None, recursive=False,
25 If `recursive` is true, the pattern '**' will match any files and
28 return list(iglob(pathname, root_dir=root_dir, dir_fd=dir_fd, recursive=recursive,
31 def iglob(pathname, *, root_dir=None, dir_fd=None, recursive=False,
40 If recursive is true, the pattern '**' will match any files and
43 sys.audit("glob.glob", pathname, recursive)
44 sys.audit("glob.glob/2", pathname, recursive, root_dir, dir_fd)
49 it = _iglob(pathname, root_dir, dir_fd, recursive, False,
51 if not pathname or recursive and _isrecursive(pathname[:2]):
60 def _iglob(pathname, root_dir, dir_fd, recursive, dironly,
74 if recursive and _isrecursive(basename):
85 dirs = _iglob(dirname, root_dir, dir_fd, recursive, True,
90 if recursive and _isrecursive(basename):