diff options
author | Gregory P. Smith <greg@krypto.org> | 2022-05-10 19:31:41 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-10 19:31:41 (GMT) |
commit | 07b34926d3090e50f9ecaa213c564f98fc9a5a93 (patch) | |
tree | 6db7d8984be1be91fc41af5579e9093b47fb17b3 /Doc/whatsnew/3.8.rst | |
parent | dde8a1668e0a6ad09634d0c701742c91da616497 (diff) | |
download | cpython-07b34926d3090e50f9ecaa213c564f98fc9a5a93.zip cpython-07b34926d3090e50f9ecaa213c564f98fc9a5a93.tar.gz cpython-07b34926d3090e50f9ecaa213c564f98fc9a5a93.tar.bz2 |
gh-84131: Remove the deprecated pathlib.Path.link_to method. (#92505)
Co-authored-by: Barney Gale <barney.gale@gmail.com>
Diffstat (limited to 'Doc/whatsnew/3.8.rst')
-rw-r--r-- | Doc/whatsnew/3.8.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.8.rst b/Doc/whatsnew/3.8.rst index 7c293a5..6b88cf6 100644 --- a/Doc/whatsnew/3.8.rst +++ b/Doc/whatsnew/3.8.rst @@ -1087,6 +1087,9 @@ contain characters unrepresentable at the OS level. Added :meth:`pathlib.Path.link_to()` which creates a hard link pointing to a path. (Contributed by Joannah Nanjekye in :issue:`26978`) +Note that ``link_to`` was deprecated in 3.10 and removed in 3.12 in +favor of a ``hardlink_to`` method added in 3.10 which matches the +semantics of the existing ``symlink_to`` method. pickle |