Home
last modified time | relevance | path

Searched refs:hardlink_to (Results 1 – 5 of 5) sorted by relevance

/third_party/python/Doc/library/
Dpathlib.rst1143 .. method:: Path.hardlink_to(target)
1162 :func:`Path.hardlink_to`, but matches that of :func:`os.link`.
1168 This method is deprecated in favor of :meth:`Path.hardlink_to`, as the
1264 :func:`os.link` :meth:`Path.hardlink_to`
/third_party/python/Lib/
Dpathlib.py1255 def hardlink_to(self, target): member in Path
/third_party/python/Doc/whatsnew/
D3.10.rst1248 Add :meth:`Path.hardlink_to <pathlib.Path.hardlink_to>` method that
1732 Python 3.12. Use :meth:`pathlib.Path.hardlink_to` instead.
/third_party/python/Lib/test/
Dtest_pathlib.py1975 link.hardlink_to(target)
1982 link2.hardlink_to(target2)
/third_party/python/Misc/NEWS.d/
D3.10.0b1.rst1184 Add `pathlib.Path.hardlink_to()` method that supersedes `link_to()`. The new