Changeset 391 for python/trunk/Doc/library/fnmatch.rst
- Timestamp:
- Mar 19, 2014, 11:31:01 PM (11 years ago)
- Location:
- python/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
python/trunk
-
Property svn:mergeinfo
set to
/python/vendor/Python-2.7.6 merged eligible /python/vendor/current merged eligible
-
Property svn:mergeinfo
set to
-
python/trunk/Doc/library/fnmatch.rst
r2 r391 1 2 1 :mod:`fnmatch` --- Unix filename pattern matching 3 2 ================================================= … … 10 9 11 10 .. index:: module: re 11 12 **Source code:** :source:`Lib/fnmatch.py` 13 14 -------------- 12 15 13 16 This module provides support for Unix shell-style wildcards, which are *not* the … … 26 29 | ``[!seq]`` | matches any character not in *seq* | 27 30 +------------+------------------------------------+ 31 32 For a literal match, wrap the meta-characters in brackets. 33 For example, ``'[?]'`` matches the character ``'?'``. 28 34 29 35 .. index:: module: glob … … 90 96 Module :mod:`glob` 91 97 Unix shell-style path expansion. 92
Note:
See TracChangeset
for help on using the changeset viewer.