diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2015-10-22 00:34:16 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2015-10-22 00:34:16 (GMT) |
commit | 05492b898914c869e405cddde056fe880697967c (patch) | |
tree | b9d11ca9f9d428f9990188fd11002fb5ac590ac9 | |
parent | 33a7fcc066367c39b0fbd5ccd3f6f084d6b5fb0a (diff) | |
download | cpython-05492b898914c869e405cddde056fe880697967c.zip cpython-05492b898914c869e405cddde056fe880697967c.tar.gz cpython-05492b898914c869e405cddde056fe880697967c.tar.bz2 |
Issue #25417: Remove the extra dot from docstring
-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() |