diff options
author | Nikita Sobolev <mail@sobolevn.me> | 2022-02-03 09:25:10 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-03 09:25:10 (GMT) |
commit | 7ffe7ba30fc051014977c6f393c51e57e71a6648 (patch) | |
tree | 0f1e476fdbac481a29eab473b2531a21e8306a9b /Doc/whatsnew | |
parent | 0cbdd2131195b0d313762968f604e80a3e65ca9f (diff) | |
download | cpython-7ffe7ba30fc051014977c6f393c51e57e71a6648.zip cpython-7ffe7ba30fc051014977c6f393c51e57e71a6648.tar.gz cpython-7ffe7ba30fc051014977c6f393c51e57e71a6648.tar.bz2 |
bpo-46483: Remove `__class_getitem__` from `pathlib.PurePath` (GH-30848)
Co-authored-by: Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com>
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.11.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.11.rst b/Doc/whatsnew/3.11.rst index 33f39e5..acb21d3 100644 --- a/Doc/whatsnew/3.11.rst +++ b/Doc/whatsnew/3.11.rst @@ -545,6 +545,9 @@ Removed Python 3.4 but has been broken since Python 3.7. (Contributed by Inada Naoki in :issue:`23882`.) +* Remove ``__class_getitem__`` method from :class:`pathlib.PurePath`, + because it was not used and added by mistake in previous versions. + (Contributed by Nikita Sobolev in :issue:`46483`.) Porting to Python 3.11 ====================== |