summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorJoshua Cannon <joshua.cannon@ni.com>2020-11-20 15:40:39 (GMT)
committerGitHub <noreply@github.com>2020-11-20 15:40:39 (GMT)
commit452058448335b39c784af9a047f9c4a1767c0b00 (patch)
tree689ce4a242fa55ae5ff479fa936596d04d92f3dd /Misc/NEWS.d
parentd20b7ed9c1fabac3fdebb7ec362fe4f022a54639 (diff)
downloadcpython-452058448335b39c784af9a047f9c4a1767c0b00.zip
cpython-452058448335b39c784af9a047f9c4a1767c0b00.tar.gz
cpython-452058448335b39c784af9a047f9c4a1767c0b00.tar.bz2
bpo-35498: Added slice support to PathLib parents attribute. (GH-11165)
Added slice support to the `pathlib.Path.parents` sequence. For a `Path` `p`, slices of `p.parents` should return the same thing as slices of `tuple(p.parents)`.
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/Library/2018-12-14-13-29-17.bpo-35498.LEJHl7.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2018-12-14-13-29-17.bpo-35498.LEJHl7.rst b/Misc/NEWS.d/next/Library/2018-12-14-13-29-17.bpo-35498.LEJHl7.rst
new file mode 100644
index 0000000..fb24ce0
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2018-12-14-13-29-17.bpo-35498.LEJHl7.rst
@@ -0,0 +1 @@
+Add slice support to :meth:`~pathlib.Path.parents`.