Lines Matching +full:style +full:- +full:mod
1 :mod:`fnmatch` --- Unix filename pattern matching
5 :synopsis: Unix shell style filename pattern matching.
14 --------------
16 This module provides support for Unix shell-style wildcards, which are *not* the
17 same as regular expressions (which are documented in the :mod:`re` module). The
18 special characters used in shell-style wildcards are:
20 +------------+------------------------------------+
24 +------------+------------------------------------+
26 +------------+------------------------------------+
28 +------------+------------------------------------+
30 +------------+------------------------------------+
32 For a literal match, wrap the meta-characters in brackets.
38 module. See module :mod:`glob` for pathname expansion (:mod:`glob` uses
47 :const:`True` or :const:`False`. Both parameters are case-normalized
49 case-sensitive comparison, regardless of whether that's standard for the
66 :const:`False`; the comparison is case-sensitive and does not apply
80 Return the shell-style *pattern* converted to a regular expression for
97 Module :mod:`glob`
98 Unix shell-style path expansion.