summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2014-05-13 08:50:15 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2014-05-13 08:50:15 (GMT)
commit43e3d9409de92808b2ef5974b6a9f13eda57033f (patch)
tree1f8d1a1d379fdd3a0c76b5eae57a215df59e2854 /Misc
parent38acd4c028f72a80079c27d68c8da2efd059a38d (diff)
downloadcpython-43e3d9409de92808b2ef5974b6a9f13eda57033f.zip
cpython-43e3d9409de92808b2ef5974b6a9f13eda57033f.tar.gz
cpython-43e3d9409de92808b2ef5974b6a9f13eda57033f.tar.bz2
Issue #19775: Add a samefile() method to pathlib Path objects.
Initial patch by Vajrasky Kok.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 6c128af..e73f0a7 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -84,6 +84,9 @@ Core and Builtins
Library
-------
+- Issue #19775: Add a samefile() method to pathlib Path objects. Initial
+ patch by Vajrasky Kok.
+
- Issue #21398: Fix an unicode error in the pydoc pager when the documentation
contains characters not encodable to the stdout encoding.