• Home
  • Raw
  • Download

Lines Matching +full:is +full:- +full:glob

1 :mod:`fnmatch` --- Unix filename pattern matching
13 --------------
15 This module provides support for Unix shell-style wildcards, which are *not* 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.
41 .. index:: pair: module; glob
43 Note that the filename separator (``'/'`` on Unix) is *not* special to this
44 module. See module :mod:`glob` for pathname expansion (:mod:`glob` uses
49 Also note that :func:`functools.lru_cache` with the *maxsize* of 32768 is used to
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
81 …Construct a list from those elements of the iterable *names* that match *pattern*. It is the same …
87 Return the shell-style *pattern* converted to a regular expression for
104 Module :mod:`glob`
105 Unix shell-style path expansion.