summaryrefslogtreecommitdiff
path: root/doc/source.rst
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2011-03-21 21:40:07 -0400
committerNed Batchelder <ned@nedbatchelder.com>2011-03-21 21:40:07 -0400
commit43167860f5d36940bd56b0a55d4694ab27fff182 (patch)
tree853903565be12621da594b0be32c8c4eb4877592 /doc/source.rst
parent27028b408fa4f8ac0ba2da3a3031935ed40fe699 (diff)
downloadpython-coveragepy-43167860f5d36940bd56b0a55d4694ab27fff182.tar.gz
--omit and --include now interpret their values more usefully. Fixes #121.
Diffstat (limited to 'doc/source.rst')
-rw-r--r--doc/source.rst5
1 files changed, 2 insertions, 3 deletions
diff --git a/doc/source.rst b/doc/source.rst
index 3f0a156..8700bcb 100644
--- a/doc/source.rst
+++ b/doc/source.rst
@@ -43,9 +43,8 @@ the set.
The ``include`` and ``omit`` filename patterns follow typical shell syntax:
``*`` matches any number of characters and ``?`` matches a single character.
-The full semantics are specified in the `fnmatch docs`_.
-
-.. _fnmatch docs: http://docs.python.org/library/fnmatch.html
+Patterns that start with a wildcard character are used as-is, other patterns
+are interpreted relative to the current directory.
The ``source``, ``include``, and ``omit`` values all work together to determine
the source that will be measured.