Skip to content

Commit a643516

Browse files
authored
Merge branch 'main' into 109311-remove-ss-in-float-complex-dunders
2 parents bbf976d + 13cb8ca commit a643516

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

Doc/whatsnew/3.15.rst

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ Removed
124124
sysconfig
125125
---------
126126

127-
* The *check_home* parameter of :func:`sysconfig.is_python_build`.
127+
* Removed the *check_home* parameter of :func:`sysconfig.is_python_build`.
128128
(Contributed by Filipe Laíns in :gh:`92897`.)
129129

130130

@@ -133,7 +133,7 @@ typing
133133

134134
* The undocumented keyword argument syntax for creating
135135
:class:`~typing.NamedTuple` classes (for example,
136-
``Point = NamedTuple("Point", x=int, y=int)``).
136+
``Point = NamedTuple("Point", x=int, y=int)``) is no longer supported.
137137
Use the class-based syntax or the functional syntax instead.
138138
(Contributed by Bénédikt Tran in :gh:`133817`.)
139139

@@ -216,6 +216,7 @@ Removed C APIs
216216

217217
* :c:func:`!PyImport_ImportModuleNoBlock`: deprecated alias
218218
of :c:func:`PyImport_ImportModule`.
219+
(Contributed by Bénédikt Tran in :gh:`133644`.)
219220

220221
The following functions are removed in favor of :c:func:`PyConfig_Get`.
221222
The |pythoncapi_compat_project| can be used to get :c:func:`!PyConfig_Get`
@@ -248,6 +249,8 @@ on Python 3.13 and older.
248249
use :c:func:`PyConfig_Get("home") <PyConfig_Get>` or the
249250
:envvar:`PYTHONHOME` environment variable instead.
250251

252+
(Contributed by Bénédikt Tran in :gh:`133644`.)
253+
251254
.. |pythoncapi_compat_project| replace:: |pythoncapi_compat_project_link|_
252255
.. |pythoncapi_compat_project_link| replace:: pythoncapi-compat project
253256
.. _pythoncapi_compat_project_link: https://github.com/python/pythoncapi-compat

0 commit comments

Comments
 (0)