diff options
author | Guido van Rossum <guido@python.org> | 2016-01-06 19:36:03 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2016-01-06 19:36:03 (GMT) |
commit | 1469d744bccbf7c6357bd23f06851d70f538f7e6 (patch) | |
tree | d662c99f9e2770326add9a8456650b6ba8a41e9c /Doc/library/pathlib.rst | |
parent | 05075203c5577120b6f49b377d04cc0de8ef5bf2 (diff) | |
download | cpython-1469d744bccbf7c6357bd23f06851d70f538f7e6.zip cpython-1469d744bccbf7c6357bd23f06851d70f538f7e6.tar.gz cpython-1469d744bccbf7c6357bd23f06851d70f538f7e6.tar.bz2 |
Cross-reference os.DirEntry and pathlib.Path for issue #22570.
Diffstat (limited to 'Doc/library/pathlib.rst')
-rw-r--r-- | Doc/library/pathlib.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/library/pathlib.rst b/Doc/library/pathlib.rst index 9c8ca58..a7ce18d 100644 --- a/Doc/library/pathlib.rst +++ b/Doc/library/pathlib.rst @@ -381,7 +381,11 @@ Pure paths provide the following methods and properties: ``arg = str(arg)``, this will still raise an exception if an object of some other type is given by accident. + A nice advantage is that this protocol is also supported by + :class:`os.DirEntry` objects returned by :func:`os.scandir`. + .. versionadded:: 3.4.5 + .. versionadded:: 3.5.2 .. data:: PurePath.suffix |