Lines Matching refs:exclude
207 def doSuite(self, intro, body, exclude=0):
209 if exclude or (intro and not self.recordNodeLine(intro)):
215 # Finding the exclude lines for else's is tricky, because they aren't
218 # first line are excluded, then we exclude the else.
223 self.doSuite(None, suite, exclude=self.excluded.has_key(l))
314 self.exclude('# *pragma[: ]*[nN][oO] *[cC][oO][vV][eE][rR]')
461 def exclude(self, re):
596 source.read(), exclude=self.exclude_re
692 def find_executable_statements(self, text, exclude=None):
696 if exclude:
697 reExclude = re.compile(exclude)
956 def exclude(*args, **kw):
957 return the_coverage.exclude(*args, **kw)
1070 # 2006-09-17 NMB coverage.erase() shouldn't clobber the exclude regex.