Home
last modified time | relevance | path

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

/external/python/cpython3/Lib/test/
Dtest_pydoc.py1523 def _get_revised_path(self, given_path, argv0=None): argument
1528 return pydoc._get_revised_path(given_path, argv0)
1553 def _get_revised_path(given_path): argument
1554 return self._get_revised_path(given_path, argv0=pydoc.__file__)
/external/python/cpython3/Lib/
Dpydoc.py2731 def _get_revised_path(given_path, argv0): argument
2744 if '' in given_path or os.curdir in given_path or os.getcwd() in given_path:
2751 revised_path = given_path.copy()
2752 if script_dir in given_path and not os.path.samefile(script_dir, stdlib_dir):