Home | History | Annotate | Download | only in python2.7

Lines Matching refs:module_relative

209 def _load_testfile(filename, package, module_relative):
210 if module_relative:
1898 def testfile(filename, module_relative=True, name=None, package=None,
1905 Optional keyword arg "module_relative" specifies how filenames
1908 - If "module_relative" is True (the default), then "filename"
1916 - If "module_relative" is False, then "filename" specifies an
1928 specify "package" if "module_relative" is False.
1980 if package and not module_relative:
1985 text, filename = _load_testfile(filename, package, module_relative)
2420 def DocFileTest(path, module_relative=True, package=None,
2428 if package and not module_relative:
2433 doc, path = _load_testfile(path, package, module_relative)
2454 "module_relative".
2458 module_relative
2459 If "module_relative" is True, then the given file paths are
2468 If "module_relative" is False, then the given file paths are
2478 "module_relative" is False.
2510 if kw.get('module_relative', True):
2785 failures, _ = testfile(filename, module_relative=False)