Browse Source

Issue #25417: Fix typo in Path.samefile() docstring

Reported by Antony Lee.
pull/9921/head
Berker Peksag 10 years ago
parent
commit
267597f087
  1. 4
      Lib/pathlib.py

4
Lib/pathlib.py

@ -1017,8 +1017,8 @@ class Path(PurePath):
return cls(cls()._flavour.gethomedir(None))
def samefile(self, other_path):
"""Return whether `other_file` is the same or not as this file.
(as returned by os.path.samefile(file, other_file)).
"""Return whether other_path is the same or not as this file.
(as returned by os.path.samefile()).
"""
st = self.stat()
try:

Loading…
Cancel
Save