Lines Matching refs:mod
2053 def __init__(self, mod=None, globs=None, verbose=None, optionflags=0):
2058 if mod is None and globs is None:
2059 raise TypeError("Tester.__init__: must specify mod or globs")
2060 if mod is not None and not inspect.ismodule(mod):
2061 raise TypeError("Tester.__init__: mod must be a module; %r" %
2062 (mod,))
2064 globs = mod.__dict__