diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2018-08-22 11:39:56 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2018-08-24 06:54:17 -0400 |
commit | 6a1cf8af7b4ae901eda1d4ab194b4f682804c012 (patch) | |
tree | fb34abed836bec7e8100b91ff47a7500bb040b62 /tests/farm/html/src/partial.py | |
parent | 7f5fb57e3e264f134c162dfb25c92e2b2d0e79e0 (diff) | |
download | python-coveragepy-git-6a1cf8af7b4ae901eda1d4ab194b4f682804c012.tar.gz |
Delete unneeded farm/src files
Diffstat (limited to 'tests/farm/html/src/partial.py')
-rw-r--r-- | tests/farm/html/src/partial.py | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/tests/farm/html/src/partial.py b/tests/farm/html/src/partial.py deleted file mode 100644 index ea97ec4f..00000000 --- a/tests/farm/html/src/partial.py +++ /dev/null @@ -1,24 +0,0 @@ -# Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0 -# For details: https://github.com/nedbat/coveragepy/blob/master/NOTICE.txt - -# partial branches and excluded lines - -a = 6 - -while True: - break - -while 1: - break - -while a: # pragma: no branch - break - -if 0: - never_happen() - -if 1: - a = 21 - -if a == 23: - raise AssertionError("Can't") |