summaryrefslogtreecommitdiffstats
path: root/Misc
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 /Misc
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 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2019-04-28-01-52-39.bpo-26978.Lpm-SI.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-04-28-01-52-39.bpo-26978.Lpm-SI.rst b/Misc/NEWS.d/next/Library/2019-04-28-01-52-39.bpo-26978.Lpm-SI.rst
new file mode 100644
index 0000000..0b14920
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2019-04-28-01-52-39.bpo-26978.Lpm-SI.rst
@@ -0,0 +1,2 @@
+`pathlib.path.link_to()` is now implemented. It creates a hard link pointing
+to a path.