Skip to content

Commit a625628

Browse files
committed
Python 3.15.0a2
1 parent f46785f commit a625628

File tree

192 files changed

+1811
-394
lines changed

Some content is hidden

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

192 files changed

+1811
-394
lines changed

Doc/c-api/import.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -353,4 +353,4 @@ Importing Modules
353353
354354
On error, return NULL with an exception set.
355355
356-
.. versionadded:: next
356+
.. versionadded:: 3.15

Doc/c-api/init.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1390,7 +1390,7 @@ All of the following functions must be called after :c:func:`Py_Initialize`.
13901390
13911391
See :c:func:`PyUnstable_ThreadState_ResetStackProtection` for undoing this operation.
13921392
1393-
.. versionadded:: next
1393+
.. versionadded:: 3.15
13941394
13951395
13961396
.. c:function:: void PyUnstable_ThreadState_ResetStackProtection(PyThreadState *tstate)
@@ -1400,7 +1400,7 @@ All of the following functions must be called after :c:func:`Py_Initialize`.
14001400
14011401
See :c:func:`PyUnstable_ThreadState_SetStackProtection` for an explanation.
14021402
1403-
.. versionadded:: next
1403+
.. versionadded:: 3.15
14041404
14051405
14061406
.. c:function:: PyInterpreterState* PyInterpreterState_Get(void)

Doc/library/ast.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2261,7 +2261,7 @@ and classes for traversing abstract syntax trees:
22612261
The minimum supported version for ``feature_version`` is now ``(3, 7)``.
22622262
The ``optimize`` argument was added.
22632263

2264-
.. versionadded:: next
2264+
.. versionadded:: 3.15
22652265
Added the *module* parameter.
22662266

22672267

Doc/library/decimal.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1575,7 +1575,7 @@ Constants
15751575
Specification that this implementation complies with.
15761576
See https://speleotrove.com/decimal/decarith.html for the specification.
15771577

1578-
.. versionadded:: next
1578+
.. versionadded:: 3.15
15791579

15801580

15811581
The following constants are only relevant for the C module. They

Doc/library/functions.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -377,7 +377,7 @@ are always available. They are listed here in alphabetical order.
377377
``ast.PyCF_ALLOW_TOP_LEVEL_AWAIT`` can now be passed in flags to enable
378378
support for top-level ``await``, ``async for``, and ``async with``.
379379

380-
.. versionadded:: next
380+
.. versionadded:: 3.15
381381
Added the *module* parameter.
382382

383383

Doc/library/functools.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -716,7 +716,7 @@ The :mod:`functools` module defines the following functions:
716716

717717
.. versionadded:: 3.8
718718

719-
.. versionchanged:: next
719+
.. versionchanged:: 3.15
720720
Added support of non-:term:`descriptor` callables.
721721

722722

Doc/library/importlib.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -480,7 +480,7 @@ ABC hierarchy::
480480
.. versionchanged:: 3.5
481481
Made the method static.
482482

483-
.. versionadded:: next
483+
.. versionadded:: 3.15
484484
Added the *fullname* parameter.
485485

486486

@@ -1048,7 +1048,7 @@ find and load modules.
10481048
:meth:`PathFinder.invalidate_caches` invalidates :class:`NamespacePath`,
10491049
forcing the path value to be recomputed next time it is accessed.
10501050

1051-
.. versionadded:: next
1051+
.. versionadded:: 3.15
10521052

10531053

10541054
.. class:: SourceFileLoader(fullname, path)

Doc/library/inspect.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -636,7 +636,7 @@ Retrieving source code
636636
.. versionchanged:: 3.5
637637
Documentation strings are now inherited if not overridden.
638638

639-
.. versionchanged:: next
639+
.. versionchanged:: 3.15
640640
Added parameters *inherit_class_doc* and *fallback_to_class_doc*.
641641

642642
Documentation strings on :class:`~functools.cached_property`

Doc/library/math.integer.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
.. module:: math.integer
55
:synopsis: Integer-specific mathematics functions.
66

7-
.. versionadded:: next
7+
.. versionadded:: 3.15
88

99
--------------
1010

Doc/library/math.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -781,7 +781,7 @@ the following functions from the :mod:`math.integer` module:
781781
Floats with integral values (like ``5.0``) are no longer accepted in the
782782
:func:`factorial` function.
783783

784-
.. deprecated:: next
784+
.. deprecated:: 3.15
785785
These aliases are :term:`soft deprecated` in favor of the
786786
:mod:`math.integer` functions.
787787

0 commit comments

Comments
 (0)