From: Berker Peksag Date: Thu, 22 Oct 2015 00:34:16 +0000 (+0300) Subject: Issue #25417: Remove the extra dot from docstring X-Git-Tag: v3.5.1rc1~136 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=05492b898914c869e405cddde056fe880697967c;p=thirdparty%2FPython%2Fcpython.git Issue #25417: Remove the extra dot from docstring --- diff --git a/Lib/pathlib.py b/Lib/pathlib.py index 4e219182e79d..1b5d2a9025a0 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()