Lines Matching +full:style +full:- +full:mod
1 :mod:`fnmatch` --- Unix filename pattern matching
5 :synopsis: Unix shell style filename pattern matching.
13 --------------
15 This module provides support for Unix shell-style wildcards, which are *not* the
16 same as regular expressions (which are documented in the :mod:`re` module). The
17 special characters used in shell-style wildcards are:
20 single: * (asterisk); in glob-style wildcards
21 single: ? (question mark); in glob-style wildcards
22 single: [] (square brackets); in glob-style wildcards
23 single: ! (exclamation); in glob-style wildcards
24 single: - (minus); in glob-style wildcards
26 +------------+------------------------------------+
30 +------------+------------------------------------+
32 +------------+------------------------------------+
34 +------------+------------------------------------+
36 +------------+------------------------------------+
38 For a literal match, wrap the meta-characters in brackets.
44 module. See module :mod:`glob` for pathname expansion (:mod:`glob` uses
56 :const:`True` or :const:`False`. Both parameters are case-normalized
58 case-sensitive comparison, regardless of whether that's standard for the
75 :const:`False`; the comparison is case-sensitive and does not apply
87 Return the shell-style *pattern* converted to a regular expression for
104 Module :mod:`glob`
105 Unix shell-style path expansion.