Home
last modified time | relevance | path

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

/external/python/pyfakefs/pyfakefs/
Dfake_scandir.py46 self._islink = False
69 return self._isdir and (follow_symlinks or not self._islink)
83 return not self._isdir and (follow_symlinks or not self._islink)
87 return self._islink
151 dir_entry._islink = self.filesystem.islink(dir_entry._abspath)
/external/python/cpython3/Lib/
Dshutil.py231 def _islink(fn): function
261 if not follow_symlinks and _islink(src):
299 if not follow_symlinks and _islink(src) and os.path.islink(dst):
356 follow = follow_symlinks or not (_islink(src) and os.path.islink(dst))