Skip to content

Commit b092705

Browse files
committed
Python 3.14.0b1
1 parent 5f01b00 commit b092705

File tree

237 files changed

+2243
-583
lines changed

Some content is hidden

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

237 files changed

+2243
-583
lines changed

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

Doc/library/ctypes.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2358,7 +2358,7 @@ Data types
23582358
:func:`POINTER` for corresponding ctypes data type. If a pointer type
23592359
was not yet created, the attribute is missing.
23602360

2361-
.. versionadded:: next
2361+
.. versionadded:: 3.14
23622362

23632363
Common instance variables of ctypes data types:
23642364

@@ -2756,7 +2756,7 @@ fields, or any other data types containing pointer type fields.
27562756

27572757
This is only implemented for the MSVC-compatible memory layout.
27582758

2759-
.. deprecated-removed:: next 3.19
2759+
.. deprecated-removed:: 3.14 3.19
27602760

27612761
For historical reasons, if :attr:`!_pack_` is non-zero,
27622762
the MSVC-compatible layout will be used by default.
@@ -2799,7 +2799,7 @@ fields, or any other data types containing pointer type fields.
27992799
:attr:`!_layout_` must already be defined when
28002800
:attr:`~Structure._fields_` is assigned, otherwise it will have no effect.
28012801

2802-
.. versionadded:: next
2802+
.. versionadded:: 3.14
28032803

28042804
.. attribute:: _anonymous_
28052805

Doc/library/curses.rst

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

8181
* Change the definition of the color-pair ``0`` to ``(fg, bg)``.
8282

83-
.. versionadded:: next
83+
.. versionadded:: 3.14
8484

8585

8686
.. function:: baudrate()

0 commit comments

Comments
 (0)