summaryrefslogtreecommitdiff
path: root/test/farm/html/src/partial.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/farm/html/src/partial.py')
-rw-r--r--test/farm/html/src/partial.py18
1 files changed, 0 insertions, 18 deletions
diff --git a/test/farm/html/src/partial.py b/test/farm/html/src/partial.py
deleted file mode 100644
index 8d62f5c5..00000000
--- a/test/farm/html/src/partial.py
+++ /dev/null
@@ -1,18 +0,0 @@
-# partial branches
-
-a = 3
-
-while True:
- break
-
-while 1:
- break
-
-while a: # pragma: no branch
- break
-
-if 0:
- never_happen()
-
-if 1:
- a = 13