summaryrefslogtreecommitdiff
path: root/test/farm/annotate/src/white.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/farm/annotate/src/white.py')
-rw-r--r--test/farm/annotate/src/white.py33
1 files changed, 0 insertions, 33 deletions
diff --git a/test/farm/annotate/src/white.py b/test/farm/annotate/src/white.py
deleted file mode 100644
index ecbbd25a..00000000
--- a/test/farm/annotate/src/white.py
+++ /dev/null
@@ -1,33 +0,0 @@
-# A test case sent to me by Steve White
-
-def f(self):
- if self==1:
- pass
- elif self.m('fred'):
- pass
- elif (g==1) and (b==2):
- pass
- elif self.m('fred')==True:
- pass
- elif ((g==1) and (b==2))==True:
- pass
- else:
- pass
-
-def g(x):
- if x == 1:
- a = 1
- else:
- a = 2
-
-g(1)
-
-def h(x):
- if 0: #pragma: no cover
- pass
- if x == 1:
- a = 1
- else:
- a = 2
-
-h(2)