]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-109975: Update 'What's New in Python 3.13' for beta (#118694)
authorHugo van Kemenade <1324225+hugovk@users.noreply.github.com>
Tue, 7 May 2024 10:35:32 +0000 (12:35 +0200)
committerGitHub <noreply@github.com>
Tue, 7 May 2024 10:35:32 +0000 (12:35 +0200)
Doc/whatsnew/3.13.rst
Misc/NEWS.d/next/C API/2024-04-08-09-44-29.gh-issue-117534.54ZE_n.rst
Misc/NEWS.d/next/Library/2018-02-13-10-02-54.bpo-32839.McbVz3.rst
Misc/NEWS.d/next/Library/2024-04-17-21-28-24.gh-issue-116931._AS09h.rst
Misc/NEWS.d/next/Library/2024-04-24-12-20-48.gh-issue-118013.TKn_kZ.rst
Misc/NEWS.d/next/Library/2024-04-24-12-29-33.gh-issue-118221.2k_bac.rst

index df38a6154701c34b12ecb4fd3bc6ee9bf2f0646a..5b5155b00c46142e001fee20bd17efec7fed5294 100644 (file)
@@ -347,7 +347,7 @@ Other Language Changes
 New Modules
 ===========
 
-* None yet.
+* None.
 
 
 Improved Modules
@@ -1647,7 +1647,7 @@ PEP 594: dead batteries
   * :mod:`!pipes`: use the :mod:`subprocess` module instead.
     (Contributed by Victor Stinner in :gh:`104773`.)
 
-  * :mod:`!sndhdr`: use the projects :pypi:`filetype_,
+  * :mod:`!sndhdr`: use the projects :pypi:`filetype`,
     :pypi:`puremagic`, or :pypi:`python-magic` instead.
     (Contributed by Victor Stinner in :gh:`104773`.)
 
@@ -1791,11 +1791,6 @@ webbrowser
   attribute instead.
   (Contributed by Nikita Sobolev in :gh:`105546`.)
 
-Others
-------
-
-* None yet
-
 CPython bytecode changes
 ========================
 
index 4b7dda610fc2b25ea04330e5832fffbd55f1b73d..f48d4235d2869481f80d86606f93ba18ad1cc192 100644 (file)
@@ -1,2 +1,3 @@
-Improve validation logic in the C implementation of :meth:`datetime.fromisoformat`
-to better handle invalid years. Patch by Vlad Efanov.
+Improve validation logic in the C implementation of
+:meth:`datetime.datetime.fromisoformat` to better handle invalid years.
+Patch by Vlad Efanov.
index 0a2e3e3c540c486e34d74258cd455f6ebcbe5d6b..3e9cca5e10fd5dbde617d391a358574a3402af7b 100644 (file)
@@ -1 +1 @@
-Add the :meth:`after_info` method for Tkinter widgets.
+Add the :meth:`!after_info` method for Tkinter widgets.
index 98df8f59f71b762421db735cbe883e0d271c04ae..a40276c7b731ed0c8206a3d1cd537f5dfd81f02f 100644 (file)
@@ -1 +1 @@
-Add parameter *fileobj* check for :func:`tarfile.addfile()`
+Add parameter *fileobj* check for :func:`tarfile.TarFile.addfile`
index daa5fe7c0f29171928c82b34136d2995cc4f82c0..aa2da4f837bb6c70374892b493a5be6edc5e594b 100644 (file)
@@ -5,5 +5,5 @@ to that instance's class to persist in an internal cache in the
 class was dynamically created, the class held strong references to other
 objects which took up a significant amount of memory, and the cache
 contained the sole strong reference to the class. The fix for the regression
-leads to a slowdown in :func:`getattr_static`, but the function should still
+leads to a slowdown in :func:`!getattr_static`, but the function should still
 be significantly faster than it was in Python 3.11. Patch by Alex Waygood.
index 9b0ea9978a195eb4cd792702a56586fa6804b942..d822e36b6b01115be01abc472f0a5280d7c19782 100644 (file)
@@ -1,2 +1,3 @@
-Fix a bug where :func:`sqlite3.iterdump` could fail if a custom :attr:`row
-factory <sqlite3.Connection.row_factory>` was used. Patch by Erlend Aasland.
+Fix a bug where :meth:`sqlite3.Connection.iterdump` could fail if a custom
+:attr:`row factory <sqlite3.Connection.row_factory>` was used. Patch by Erlend
+Aasland.