Skip to content

Commit 6024d3c

Browse files
committed
Python 3.15.0a7
1 parent 728e4a0 commit 6024d3c

File tree

146 files changed

+1513
-454
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

146 files changed

+1513
-454
lines changed

Doc/c-api/arg.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -524,7 +524,7 @@ API Functions
524524
Returns true on success; on failure, it returns false and raises the
525525
appropriate exception.
526526
527-
.. versionadded:: next
527+
.. versionadded:: 3.15
528528
529529
530530
.. c:function:: int PyArg_ParseArrayAndKeywords(PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames, const char *format, const char * const *kwlist, ...)
@@ -535,7 +535,7 @@ API Functions
535535
Returns true on success; on failure, it returns false and raises the
536536
appropriate exception.
537537
538-
.. versionadded:: next
538+
.. versionadded:: 3.15
539539
540540
541541
.. c:function:: int PyArg_UnpackTuple(PyObject *args, const char *name, Py_ssize_t min, Py_ssize_t max, ...)

Doc/c-api/dict.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -495,7 +495,7 @@ Dictionary view objects
495495
Frozen dictionary objects
496496
^^^^^^^^^^^^^^^^^^^^^^^^^
497497
498-
.. versionadded:: next
498+
.. versionadded:: 3.15
499499
500500
501501
.. c:var:: PyTypeObject PyFrozenDict_Type

Doc/c-api/exceptions.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -716,7 +716,7 @@ Signal Handling
716716
This function may now execute a remote debugger script, if remote
717717
debugging is enabled.
718718
719-
.. versionchanged:: next
719+
.. versionchanged:: 3.15
720720
The exception set by :c:func:`PyThreadState_SetAsyncExc` is now raised.
721721
722722

Doc/c-api/import.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -350,14 +350,14 @@ Importing Modules
350350
351351
Gets the current lazy imports mode.
352352
353-
.. versionadded:: next
353+
.. versionadded:: 3.15
354354
355355
.. c:function:: PyObject* PyImport_GetLazyImportsFilter()
356356
357357
Return a :term:`strong reference` to the current lazy imports filter,
358358
or ``NULL`` if none exists. This function always succeeds.
359359
360-
.. versionadded:: next
360+
.. versionadded:: 3.15
361361
362362
.. c:function:: int PyImport_SetLazyImportsMode(PyImport_LazyImportsMode mode)
363363
@@ -366,7 +366,7 @@ Importing Modules
366366
367367
This function always returns ``0``.
368368
369-
.. versionadded:: next
369+
.. versionadded:: 3.15
370370
371371
.. c:function:: int PyImport_SetLazyImportsFilter(PyObject *filter)
372372
@@ -377,7 +377,7 @@ Importing Modules
377377
378378
Return ``0`` on success and ``-1`` with an exception set otherwise.
379379
380-
.. versionadded:: next
380+
.. versionadded:: 3.15
381381
382382
.. c:type:: PyImport_LazyImportsMode
383383
@@ -396,7 +396,7 @@ Importing Modules
396396
Disable lazy imports entirely. Even explicit ``lazy`` statements become
397397
eager imports.
398398
399-
.. versionadded:: next
399+
.. versionadded:: 3.15
400400
401401
.. c:function:: PyObject* PyImport_CreateModuleFromInitfunc(PyObject *spec, PyObject* (*initfunc)(void))
402402

Doc/c-api/object.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -817,4 +817,4 @@ Object Protocol
817817
Returns 1 if the object was made immortal and returns 0 if it was not.
818818
This function cannot fail.
819819
820-
.. versionadded:: next
820+
.. versionadded:: 3.15

Doc/library/dataclasses.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@ Module contents
330330
:attr:`!C.t` will be ``20``, and the class attributes :attr:`!C.x` and
331331
:attr:`!C.y` will not be set.
332332

333-
.. versionchanged:: next
333+
.. versionchanged:: 3.15
334334
If *metadata* is ``None``, use an empty :class:`frozendict`, instead
335335
of a :func:`~types.MappingProxyType` of an empty :class:`dict`.
336336

Doc/library/email.headerregistry.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ variant, :attr:`~.BaseHeader.max_count` is set to 1.
266266

267267
A dictionary mapping parameter names to parameter values.
268268

269-
.. versionchanged:: next
269+
.. versionchanged:: 3.15
270270
It is now a :class:`frozendict` instead of a
271271
:class:`types.MappingProxyType`.
272272

Doc/library/exceptions.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ The following exceptions are the exceptions that are usually raised.
271271
A subclass of :exc:`ImportError` which is raised when a lazy import fails
272272
because it (directly or indirectly) tries to import itself.
273273

274-
.. versionadded:: next
274+
.. versionadded:: 3.15
275275

276276
.. exception:: IndexError
277277

Doc/library/functions.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -660,7 +660,7 @@ are always available. They are listed here in alphabetical order.
660660
The semantics of the default *locals* namespace have been adjusted as
661661
described for the :func:`locals` builtin.
662662

663-
.. versionchanged:: next
663+
.. versionchanged:: 3.15
664664

665665
*globals* can now be a :class:`frozendict`.
666666

@@ -741,7 +741,7 @@ are always available. They are listed here in alphabetical order.
741741
The semantics of the default *locals* namespace have been adjusted as
742742
described for the :func:`locals` builtin.
743743

744-
.. versionchanged:: next
744+
.. versionchanged:: 3.15
745745

746746
*globals* can now be a :class:`frozendict`.
747747

@@ -2099,7 +2099,7 @@ are always available. They are listed here in alphabetical order.
20992099
Subclasses of :class:`!type` which don't override ``type.__new__`` may no
21002100
longer use the one-argument form to get the type of an object.
21012101

2102-
.. versionchanged:: next
2102+
.. versionchanged:: 3.15
21032103

21042104
*dict* can now be a :class:`frozendict`.
21052105

Doc/library/importlib.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ ABC hierarchy::
292292
instead of a :class:`list` or other
293293
:class:`collection <collections.abc.Collection>` type.
294294

295-
.. versionadded:: next
295+
.. versionadded:: 3.15
296296

297297

298298
.. class:: PathEntryFinder
@@ -346,7 +346,7 @@ ABC hierarchy::
346346
instead of a :class:`list` or other
347347
:class:`collection <collections.abc.Collection>` type.
348348

349-
.. versionadded:: next
349+
.. versionadded:: 3.15
350350

351351

352352
.. class:: Loader

0 commit comments

Comments
 (0)