Searched refs:_matching_string (Results 1 – 1 of 1) sorted by relevance
| /external/python/pyfakefs/pyfakefs/ |
| D | fake_filesystem.py | 963 def _matching_string(matched, string): member in FakeFilesystem 975 return self._matching_string(path, self.path_separator) 979 return self._matching_string(path, self.alternative_path_separator) 1032 mount_path = self._matching_string(path, '') 1035 root_path = self._matching_string(path, root_path) 1374 dot = self._matching_string(path, '.') 1375 dotdot = self._matching_string(path, '..') 1449 cwd = self._matching_string(path, self.cwd) 1452 if path == self._matching_string(path, '.'): 1456 root_name = self._matching_string(path, self.root.name) [all …]
|