Skip to content

Commit bd612e2

Browse files
authored
Merge branch 'main' into add_tests_for_site_cli
2 parents 1f63937 + a054af6 commit bd612e2

File tree

255 files changed

+2542
-626
lines changed

Some content is hidden

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

255 files changed

+2542
-626
lines changed

.github/ISSUE_TEMPLATE/bug.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ body:
4040
- "3.12"
4141
- "3.13"
4242
- "3.14"
43+
- "3.15"
4344
- "CPython main branch"
4445
validations:
4546
required: true

.github/ISSUE_TEMPLATE/crash.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ body:
3333
- "3.12"
3434
- "3.13"
3535
- "3.14"
36+
- "3.15"
3637
- "CPython main branch"
3738
validations:
3839
required: true

Doc/c-api/arg.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ small to receive the value.
274274
Convert a Python integer to a C :c:expr:`unsigned long` without
275275
overflow checking.
276276

277-
.. versionchanged:: next
277+
.. versionchanged:: 3.14
278278
Use :meth:`~object.__index__` if available.
279279

280280
``L`` (:class:`int`) [long long]
@@ -284,7 +284,7 @@ small to receive the value.
284284
Convert a Python integer to a C :c:expr:`unsigned long long`
285285
without overflow checking.
286286

287-
.. versionchanged:: next
287+
.. versionchanged:: 3.14
288288
Use :meth:`~object.__index__` if available.
289289

290290
``n`` (:class:`int`) [:c:type:`Py_ssize_t`]
@@ -380,10 +380,10 @@ Other objects
380380
The *converter* for the ``O&`` format unit in *items* must not store
381381
a borrowed buffer or a borrowed reference.
382382

383-
.. versionchanged:: next
383+
.. versionchanged:: 3.14
384384
:class:`str` and :class:`bytearray` objects no longer accepted as a sequence.
385385

386-
.. deprecated:: next
386+
.. deprecated:: 3.14
387387
Non-tuple sequences are deprecated if *items* contains format units
388388
which store a borrowed buffer or a borrowed reference.
389389

@@ -396,7 +396,7 @@ Other objects
396396
If the argument is not ``None``, it is parsed according to the specified
397397
format unit.
398398

399-
.. versionadded:: next
399+
.. versionadded:: 3.14
400400

401401
A few other characters have a meaning in a format string. These may not occur
402402
inside nested parentheses. They are:

Doc/c-api/init_config.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1486,7 +1486,7 @@ PyConfig
14861486
14871487
Default: ``0``.
14881488
1489-
.. versionchanged:: next
1489+
.. versionchanged:: 3.14
14901490
14911491
Added support for ``import_time = 2``
14921492

Doc/howto/logging-cookbook.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -626,7 +626,7 @@ which, when run, will produce:
626626
of each message with the handler's level, and only passes a message to a
627627
handler if it's appropriate to do so.
628628

629-
.. versionchanged:: next
629+
.. versionchanged:: 3.14
630630
The :class:`QueueListener` can be started (and stopped) via the
631631
:keyword:`with` statement. For example:
632632

Doc/library/argparse.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -641,7 +641,7 @@ keyword argument::
641641
>>> parser = argparse.ArgumentParser(description='Process some integers.')
642642
>>> parser.color = True
643643

644-
.. versionadded:: next
644+
.. versionadded:: 3.14
645645

646646

647647
The add_argument() method

Doc/library/ast.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2577,21 +2577,21 @@ The following options are accepted:
25772577
Python version in the format 3.x (for example, 3.10). Defaults to the
25782578
current version of the interpreter.
25792579

2580-
.. versionadded:: next
2580+
.. versionadded:: 3.14
25812581

25822582
.. option:: -O <level>
25832583
--optimize <level>
25842584

25852585
Optimization level for parser. Defaults to no optimization.
25862586

2587-
.. versionadded:: next
2587+
.. versionadded:: 3.14
25882588

25892589
.. option:: --show-empty
25902590

25912591
Show empty lists and fields that are ``None``. Defaults to not showing empty
25922592
objects.
25932593

2594-
.. versionadded:: next
2594+
.. versionadded:: 3.14
25952595

25962596

25972597
If :file:`infile` is specified its contents are parsed to AST and dumped

Doc/library/asyncio-eventloop.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,7 @@ Creating Futures and Tasks
388388
.. versionchanged:: 3.11
389389
Added the *context* parameter.
390390

391-
.. versionchanged:: next
391+
.. versionchanged:: 3.14
392392
Added the *eager_start* parameter.
393393

394394
.. method:: loop.set_task_factory(factory)

Doc/library/audit_events.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,5 +48,5 @@ public API of CPython:
4848
| ctypes.PyObj_FromPtr | ``obj`` |
4949
+----------------------------+-------------------------------------------+
5050

51-
.. versionadded:: next
51+
.. versionadded:: 3.14
5252
The ``_posixsubprocess.fork_exec`` internal audit event.

Doc/library/codecs.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ wider range of codecs when working with binary files:
208208
.. versionchanged:: 3.11
209209
The ``'U'`` mode has been removed.
210210

211-
.. deprecated:: next
211+
.. deprecated:: 3.14
212212

213213
:func:`codecs.open` has been superseded by :func:`open`.
214214

0 commit comments

Comments
 (0)