summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2009-09-23 21:39:50 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2009-09-23 21:39:50 (GMT)
commitc24d035e9bea16ccf421a945e1d67534a14a9347 (patch)
tree51329a21a9ac699efbb3691248747a62e39c1bdc /Doc
parent2697ff2a874cd89ecd6f277ceb60af009974bf75 (diff)
downloadcpython-c24d035e9bea16ccf421a945e1d67534a14a9347.zip
cpython-c24d035e9bea16ccf421a945e1d67534a14a9347.tar.gz
cpython-c24d035e9bea16ccf421a945e1d67534a14a9347.tar.bz2
Merged revisions 75039 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r75039 | ezio.melotti | 2009-09-24 00:36:39 +0300 (Thu, 24 Sep 2009) | 1 line improved phrasing, markup and example ........
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/fnmatch.rst17
1 files changed, 9 insertions, 8 deletions
diff --git a/Doc/library/fnmatch.rst b/Doc/library/fnmatch.rst
index ce49a39..67aa2f4 100644
--- a/Doc/library/fnmatch.rst
+++ b/Doc/library/fnmatch.rst
@@ -37,11 +37,12 @@ patterns.
.. function:: fnmatch(filename, pattern)
- Test whether the *filename* string matches the *pattern* string, returning true
- or false. If the operating system is case-insensitive, then both parameters
- will be normalized to all lower- or upper-case before the comparison is
- performed. If you require a case-sensitive comparison regardless of whether
- that's standard for your operating system, use :func:`fnmatchcase` instead.
+ Test whether the *filename* string matches the *pattern* string, returning
+ :const:`True` or :const:`False`. If the operating system is case-insensitive,
+ then both parameters will be normalized to all lower- or upper-case before
+ the comparison is performed. :func:`fnmatchcase` can be used to perform a
+ case-sensitive comparison, regardless of whether that's standard for the
+ operating system.
This example will print all file names in the current directory with the
extension ``.txt``::
@@ -56,8 +57,8 @@ patterns.
.. function:: fnmatchcase(filename, pattern)
- Test whether *filename* matches *pattern*, returning true or false; the
- comparison is case-sensitive.
+ Test whether *filename* matches *pattern*, returning :const:`True` or
+ :const:`False`; the comparison is case-sensitive.
.. function:: filter(names, pattern)
@@ -80,7 +81,7 @@ patterns.
>>> regex
'.*\\.txt$'
>>> reobj = re.compile(regex)
- >>> print reobj.match('foobar.txt')
+ >>> reobj.match('foobar.txt')
<_sre.SRE_Match object at 0x...>