diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2015-10-22 00:34:35 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2015-10-22 00:34:35 (GMT) |
commit | c2a753a56c7b36159b93f6a10327f6ccb90a36e9 (patch) | |
tree | 7dfb23574dca12d9c945f7e6b66dad66c66c7b39 /Lib | |
parent | 23c9f612d637aa0877393f270db875c0801f6e65 (diff) | |
parent | 05492b898914c869e405cddde056fe880697967c (diff) | |
download | cpython-c2a753a56c7b36159b93f6a10327f6ccb90a36e9.zip cpython-c2a753a56c7b36159b93f6a10327f6ccb90a36e9.tar.gz cpython-c2a753a56c7b36159b93f6a10327f6ccb90a36e9.tar.bz2 |
Issue #25417: Remove the extra dot from docstring
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/pathlib.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/pathlib.py b/Lib/pathlib.py index 4e21918..1b5d2a9 100644 --- a/Lib/pathlib.py +++ b/Lib/pathlib.py @@ -1017,7 +1017,7 @@ class Path(PurePath): return cls(cls()._flavour.gethomedir(None)) def samefile(self, other_path): - """Return whether other_path is the same or not as this file. + """Return whether other_path is the same or not as this file (as returned by os.path.samefile()). """ st = self.stat() |