[Python-checkins] cpython (merge 3.5 -> default): Issue #25417: Remove the extra dot from docstring

berker.peksag python-checkins at python.org
Wed Oct 21 20:34:16 EDT 2015


https://hg.python.org/cpython/rev/4cd2ae001d30
changeset:   98824:4cd2ae001d30
parent:      98822:6315abbf5f71
parent:      98823:642a7be9f384
user:        Berker Peksag <berker.peksag at gmail.com>
date:        Thu Oct 22 03:34:35 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


More information about the Python-checkins mailing list