summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
diff options
context:
space:
mode:
authorJoannah Nanjekye <33177550+nanjekyejoannah@users.noreply.github.com>2019-05-04 15:27:10 (GMT)
committerAntoine Pitrou <antoine@python.org>2019-05-04 15:27:10 (GMT)
commit6b5b013bcc22a27d6231c2796882e44ddb42be67 (patch)
tree3542414369283f216bb25a02f99ddea67180519e /Doc/whatsnew
parentf0900199d53df97bd792ac5a1678f8c477f117bb (diff)
downloadcpython-6b5b013bcc22a27d6231c2796882e44ddb42be67.zip
cpython-6b5b013bcc22a27d6231c2796882e44ddb42be67.tar.gz
cpython-6b5b013bcc22a27d6231c2796882e44ddb42be67.tar.bz2
bpo-26978: Implement pathlib.Path.link_to (Using os.link) (GH-12990)
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r--Doc/whatsnew/3.8.rst4
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.8.rst b/Doc/whatsnew/3.8.rst
index 764bd00..64ef6e1 100644
--- a/Doc/whatsnew/3.8.rst
+++ b/Doc/whatsnew/3.8.rst
@@ -369,6 +369,10 @@ pathlib
contain characters unrepresentable at the OS level.
(Contributed by Serhiy Storchaka in :issue:`33721`.)
+Added :meth:`pathlib.Path.link_to()` which creates a hard link pointing
+to a path.
+(Contributed by Joannah Nanjekye in :issue:`26978`)
+
socket
------