diff options
author | Hugo van Kemenade <hugovk@users.noreply.github.com> | 2023-05-27 21:34:14 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-27 21:34:14 (GMT) |
commit | b225c08de889d2bf070e6c981c5f386cf06d961c (patch) | |
tree | 153c0286accb1bd8217f20dc3075cb0175936494 /Doc | |
parent | 897e716d03d559a10dd5015ecb501ceb98955f3a (diff) | |
download | cpython-b225c08de889d2bf070e6c981c5f386cf06d961c.zip cpython-b225c08de889d2bf070e6c981c5f386cf06d961c.tar.gz cpython-b225c08de889d2bf070e6c981c5f386cf06d961c.tar.bz2 |
gh-104992: Remove deprecated unittest.TestProgram.usageExit (#104993)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/whatsnew/3.13.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.13.rst b/Doc/whatsnew/3.13.rst index a47a037..45728d1 100644 --- a/Doc/whatsnew/3.13.rst +++ b/Doc/whatsnew/3.13.rst @@ -256,11 +256,16 @@ Removed or `python-magic <https://pypi.org/project/python-magic/>`_ instead. (Contributed by Victor Stinner in :gh:`104773`.) +* Remove the untested and undocumented :meth:`!unittest.TestProgram.usageExit` + method, deprecated in Python 3.11. + (Contributed by Hugo van Kemenade in :gh:`104992`.) + * Remove the :mod:`!tkinter.tix` module, deprecated in Python 3.6. The third-party Tix library which the module wrapped is unmaintained. (Contributed by Zachary Ware in :gh:`75552`.) + Porting to Python 3.13 ====================== |