diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2015-08-02 17:08:32 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-08-02 17:08:32 -0400 |
commit | fe2fd176d95948213cde247ce1830969250a4585 (patch) | |
tree | 61af2321d5169eeb1a1a861a4dfeaebbc5a2adb9 /coverage/collector.py | |
parent | d960dd175ca681a12aad0c3579b330c4e1932431 (diff) | |
download | python-coveragepy-fe2fd176d95948213cde247ce1830969250a4585.tar.gz |
Why didn't I get rid of this TODO ages ago?
Diffstat (limited to 'coverage/collector.py')
-rw-r--r-- | coverage/collector.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/coverage/collector.py b/coverage/collector.py index ae5f6c8..ff7400e 100644 --- a/coverage/collector.py +++ b/coverage/collector.py @@ -65,7 +65,8 @@ class Collector(object): `should_trace` is a function, taking a filename, and returning a `coverage.FileDisposition object`. - TODO: `check_include` + `check_include` is a function taking a filename and a frame. It returns + a boolean: True if the file should be traced, False if not. If `timid` is true, then a slower simpler trace function will be used. This is important for some environments where manipulation of |