Home | History | Annotate | Download | only in Lib

Lines Matching defs:Ignore

33   trace.py -c -f counts --ignore-dir '$prefix' spam.py eggs

34 trace.py -t --ignore-dir '$prefix' spam.py eggs
40 # create a Trace object, telling it what to ignore, and whether to
121 --ignore-module=<mod> Ignore the given module(s) and its submodules
124 --ignore-dir=<dir> Ignore files in the given directory (multiple
133 class Ignore:
146 # on the ignore list. Need to take some care since ignoring
150 if mod == modulename: # Identical names, so ignore
154 # the ignore list
165 # must be a built-in, so we must ignore
169 # Ignore a file when it contains one of the ignorable paths
182 # Tried the different ways, so we don't ignore this module
463 @param ignoremods a list of the names of modules to ignore
464 @param ignoredirs a list of the names of directories to ignore
473 self.ignore = Ignore(ignoremods, ignoredirs)
609 # the ignore support won't work right for packages
612 ignore_it = self.ignore.names(filename, modulename)
677 "ignore-module=", "ignore-dir=",
754 if opt == "--ignore-module":
759 if opt == "--ignore-dir":