Searched refs:module_relative (Results 1 – 3 of 3) sorted by relevance
/third_party/python/Lib/ |
D | doctest.py | 218 def _load_testfile(filename, package, module_relative, encoding): argument 219 if module_relative: 1978 def testfile(filename, module_relative=True, name=None, package=None, argument 2060 if package and not module_relative: 2065 text, filename = _load_testfile(filename, package, module_relative, 2426 def DocFileTest(path, module_relative=True, package=None, argument 2434 if package and not module_relative: 2439 doc, path = _load_testfile(path, package, module_relative, 2795 failures, _ = testfile(filename, module_relative=False,
|
/third_party/python/Doc/library/ |
D | doctest.rst | 841 .. function:: testfile(filename, module_relative=True, name=None, package=None, globs=None, verbose… 849 Optional argument *module_relative* specifies how the filename should be 852 * If *module_relative* is ``True`` (the default), then *filename* specifies an 859 * If *module_relative* is ``False``, then *filename* specifies an OS-specific 870 specify *package* if *module_relative* is ``False``. 987 .. function:: DocFileSuite(*paths, module_relative=True, package=None, setUp=None, tearDown=None, g… 1002 Optional argument *module_relative* specifies how the filenames in *paths* 1005 * If *module_relative* is ``True`` (the default), then each filename in 1013 * If *module_relative* is ``False``, then each filename in *paths* specifies 1021 filenames. It is an error to specify *package* if *module_relative* is
|
/third_party/python/Lib/test/ |
D | test_zipimport.py | 688 'xyz.txt', package=module, module_relative=True, 701 'xyz.txt', package=module, module_relative=True,
|