cpython (3.5): Issue #25417: Remove the extra dot from docstring
https://hg.python.org/cpython/rev/642a7be9f384 changeset: 98823:642a7be9f384 branch: 3.5 parent: 98821:fbd83224e132 user: Berker Peksag <berker.peksag@gmail.com> date: Thu Oct 22 03:34:16 2015 +0300 summary: Issue #25417: Remove the extra dot from docstring files: Lib/pathlib.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Lib/pathlib.py b/Lib/pathlib.py --- a/Lib/pathlib.py +++ b/Lib/pathlib.py @@ -1017,7 +1017,7 @@ 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() -- Repository URL: https://hg.python.org/cpython
participants (1)
-
berker.peksag