diff options
author | Miguel Brito <5544985+miguendes@users.noreply.github.com> | 2021-05-14 17:57:36 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-14 17:57:36 (GMT) |
commit | dc0b364de46cec104dae62282174b6c8a1cdb475 (patch) | |
tree | 8709a8ec9e07ef69dbea195e55d65d919966f781 /Misc | |
parent | 2918846a4ff394237ccd7c6d5cdf5655e2ddd726 (diff) | |
download | cpython-dc0b364de46cec104dae62282174b6c8a1cdb475.zip cpython-dc0b364de46cec104dae62282174b6c8a1cdb475.tar.gz cpython-dc0b364de46cec104dae62282174b6c8a1cdb475.tar.bz2 |
bpo-44095: Add suffix, stem and suffixes to zipfile.Path (GH-26129)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2021-05-14-16-06-02.bpo-44095.v_pLwY.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2021-05-14-16-06-02.bpo-44095.v_pLwY.rst b/Misc/NEWS.d/next/Library/2021-05-14-16-06-02.bpo-44095.v_pLwY.rst new file mode 100644 index 0000000..ee03e93 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2021-05-14-16-06-02.bpo-44095.v_pLwY.rst @@ -0,0 +1,2 @@ +:class:`zipfile.Path` now supports :attr:`zipfile.Path.stem`, +:attr:`zipfile.Path.suffixes`, and :attr:`zipfile.Path.suffix` attributes. |