summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2015-10-22 00:34:35 (GMT)
committerBerker Peksag <berker.peksag@gmail.com>2015-10-22 00:34:35 (GMT)
commitc2a753a56c7b36159b93f6a10327f6ccb90a36e9 (patch)
tree7dfb23574dca12d9c945f7e6b66dad66c66c7b39 /Lib
parent23c9f612d637aa0877393f270db875c0801f6e65 (diff)
parent05492b898914c869e405cddde056fe880697967c (diff)
downloadcpython-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.py2
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()