diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2009-05-13 07:23:09 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2009-05-13 07:23:09 -0400 |
commit | 14d8d39ca7387231b9ddeaca8126364761581b2b (patch) | |
tree | 3b24aab3d335d1e936980682752c2eb787ba0ec9 /test/farm/annotate/src | |
parent | 8d65b505d832ba4d6e4ad8a612c69377303a1772 (diff) | |
download | python-coveragepy-git-14d8d39ca7387231b9ddeaca8126364761581b2b.tar.gz |
Add some excluded lines to the annotation tests, and write some docstrings for annotate.py
Diffstat (limited to 'test/farm/annotate/src')
-rw-r--r-- | test/farm/annotate/src/white.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/farm/annotate/src/white.py b/test/farm/annotate/src/white.py index 0c4bcb81..ecbbd25a 100644 --- a/test/farm/annotate/src/white.py +++ b/test/farm/annotate/src/white.py @@ -23,6 +23,8 @@ def g(x): g(1) def h(x): + if 0: #pragma: no cover + pass if x == 1: a = 1 else: |