Skip to content

Commit 20f3669

Browse files
authoredJan 23, 2024
[3.11] GH-99334: Explain that PurePath.is_relative_to() is purely lexical. (GH-114031) (#114461)
(cherry picked from commit 3a61d24)
1 parent dcda3aa commit 20f3669

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed
 

‎Doc/library/pathlib.rst

+7
Original file line numberDiff line numberDiff line change
@@ -510,6 +510,13 @@ Pure paths provide the following methods and properties:
510510

511511
If multiple arguments are supplied, they are joined together.
512512

513+
This method is string-based; it neither accesses the filesystem nor treats
514+
"``..``" segments specially. The following code is equivalent:
515+
516+
>>> u = PurePath('/usr')
517+
>>> u == p or u in p.parents
518+
False
519+
513520
.. versionadded:: 3.9
514521

515522

0 commit comments

Comments
 (0)
Please sign in to comment.