diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2012-11-17 15:38:58 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2012-11-17 15:38:58 (GMT) |
commit | 9c594af3dd7bc020057b3559cf940cdfab89f177 (patch) | |
tree | 38681b370a8526ba1a23322f243bfef9b4b80403 | |
parent | 56b4ca78d8cd30e6f2a1292fa9d7004ef157f68c (diff) | |
parent | a39a22dc0b20f0373792322b054228f1f62b736a (diff) | |
download | cpython-9c594af3dd7bc020057b3559cf940cdfab89f177.zip cpython-9c594af3dd7bc020057b3559cf940cdfab89f177.tar.gz cpython-9c594af3dd7bc020057b3559cf940cdfab89f177.tar.bz2 |
#16420: merge with 3.2.
-rw-r--r-- | Doc/library/fnmatch.rst | 5 | ||||
-rw-r--r-- | Doc/library/glob.rst | 3 |
2 files changed, 6 insertions, 2 deletions
diff --git a/Doc/library/fnmatch.rst b/Doc/library/fnmatch.rst index 4ba6b77..e0434b0 100644 --- a/Doc/library/fnmatch.rst +++ b/Doc/library/fnmatch.rst @@ -29,6 +29,9 @@ special characters used in shell-style wildcards are: | ``[!seq]`` | matches any character not in *seq* | +------------+------------------------------------+ +For a literal match, wrap the meta-characters in brackets. +For example, ``'[?]'`` matches the character ``'?'``. + .. index:: module: glob Note that the filename separator (``'/'`` on Unix) is *not* special to this @@ -74,8 +77,6 @@ patterns. Return the shell-style *pattern* converted to a regular expression. - Be aware there is no way to quote meta-characters. - Example: >>> import fnmatch, re diff --git a/Doc/library/glob.rst b/Doc/library/glob.rst index 3d31c11..2584361 100644 --- a/Doc/library/glob.rst +++ b/Doc/library/glob.rst @@ -19,6 +19,9 @@ matched. This is done by using the :func:`os.listdir` and subshell. (For tilde and shell variable expansion, use :func:`os.path.expanduser` and :func:`os.path.expandvars`.) +For a literal match, wrap the meta-characters in brackets. +For example, ``'[?]'`` matches the character ``'?'``. + .. function:: glob(pathname) |