Lines Matching +full:style +full:- +full:mod
1 :mod:`glob` --- Unix style pathname pattern expansion
5 :synopsis: Unix shell style pathname pattern expansion.
11 --------------
14 single: * (asterisk); in glob-style wildcards
15 single: ? (question mark); in glob-style wildcards
16 single: [] (square brackets); in glob-style wildcards
17 single: ! (exclamation); in glob-style wildcards
18 single: - (minus); in glob-style wildcards
19 single: . (dot); in glob-style wildcards
21 The :mod:`glob` module finds all the pathnames matching a specified pattern
34 For a literal match, wrap the meta-characters in brackets.
39 The :mod:`pathlib` module offers high-level path objects.
47 (like :file:`/usr/src/Python-1.5/Makefile`) or relative (like
48 :file:`../../Tools/\*/\*.gif`), and can contain shell-style wildcards. Broken
54 If *root_dir* is not ``None``, it should be a :term:`path-like object`
64 single: **; in glob-style wildcards
73 .. audit-event:: glob.glob pathname,recursive glob.glob
74 .. audit-event:: glob.glob/2 pathname,recursive,root_dir,dir_fd glob.glob
96 .. audit-event:: glob.glob pathname,recursive glob.iglob
97 .. audit-event:: glob.glob/2 pathname,recursive,root_dir,dir_fd glob.iglob
127 >>> glob.glob('./[0-9].*')
150 Module :mod:`fnmatch`
151 Shell-style filename (not path) expansion