diff options
author | Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> | 2024-05-30 20:26:46 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-30 20:26:46 (GMT) |
commit | deda85717b2557c6bad8b9a51719c60ac510818f (patch) | |
tree | e3c64fa6d81d2a31629294b15e31694d18d61608 /Doc/whatsnew/3.13.rst | |
parent | ec1ba264607b2b7b98d2602f5536a1d02981efc6 (diff) | |
download | cpython-deda85717b2557c6bad8b9a51719c60ac510818f.zip cpython-deda85717b2557c6bad8b9a51719c60ac510818f.tar.gz cpython-deda85717b2557c6bad8b9a51719c60ac510818f.tar.bz2 |
Docs: `shutil.rmtree`'s `onerror` has no pending removal version (#118947)
Diffstat (limited to 'Doc/whatsnew/3.13.rst')
-rw-r--r-- | Doc/whatsnew/3.13.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/whatsnew/3.13.rst b/Doc/whatsnew/3.13.rst index bcded65..241c07e 100644 --- a/Doc/whatsnew/3.13.rst +++ b/Doc/whatsnew/3.13.rst @@ -1676,9 +1676,6 @@ Pending Removal in Python 3.14 * ``master_open()``: use :func:`pty.openpty`. * ``slave_open()``: use :func:`pty.openpty`. -* :func:`shutil.rmtree` *onerror* parameter is deprecated in 3.12, - and will be removed in 3.14: use the *onexc* parameter instead. - * :mod:`sqlite3`: * :data:`!version` and :data:`!version_info`. @@ -1854,6 +1851,9 @@ although there is currently no date scheduled for their removal. * :mod:`!sre_compile`, :mod:`!sre_constants` and :mod:`!sre_parse` modules. +* :mod:`shutil`: :func:`~shutil.rmtree`'s *onerror* parameter is deprecated in + Python 3.12; use the *onexc* parameter instead. + * :mod:`ssl` options and protocols: * :class:`ssl.SSLContext` without protocol argument is deprecated. |