Home
last modified time | relevance | path

Searched refs:given_path (Results 1 – 2 of 2) sorted by relevance

/third_party/python/Lib/test/
Dtest_pydoc.py1519 def _get_revised_path(self, given_path, argv0=None): argument
1524 return pydoc._get_revised_path(given_path, argv0)
1549 def _get_revised_path(given_path): argument
1550 return self._get_revised_path(given_path, argv0=pydoc.__file__)
/third_party/python/Lib/
Dpydoc.py2714 def _get_revised_path(given_path, argv0): argument
2727 if '' in given_path or os.curdir in given_path or os.getcwd() in given_path:
2734 revised_path = given_path.copy()
2735 if script_dir in given_path and not os.path.samefile(script_dir, stdlib_dir):