Skip to content

Commit 3ae9101

Browse files
committed
Python 3.14.0a5
1 parent 5cdd6e5 commit 3ae9101

File tree

148 files changed

+1722
-623
lines changed

Some content is hidden

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

148 files changed

+1722
-623
lines changed

Doc/c-api/bytearray.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ Direct API functions
7676
Resize the internal buffer of *bytearray* to *len*.
7777
Failure is a ``-1`` return with an exception set.
7878
79-
.. versionchanged:: next
79+
.. versionchanged:: 3.14
8080
A negative *len* will now result in an exception being set and -1 returned.
8181
8282

Doc/c-api/object.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -623,7 +623,7 @@ Object Protocol
623623
Objects that are immortal in one CPython version are not guaranteed to
624624
be immortal in another.
625625
626-
.. versionadded:: next
626+
.. versionadded:: 3.14
627627
628628
.. c:function:: int PyUnstable_TryIncRef(PyObject *obj)
629629

Doc/library/asyncio-graph.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ a suspended *future*. These utilities and the underlying machinery
1717
can be used from within a Python program or by external profilers
1818
and debuggers.
1919

20-
.. versionadded:: next
20+
.. versionadded:: 3.14
2121

2222

2323
.. function:: print_call_graph(future=None, /, *, file=None, depth=1, limit=None)

Doc/library/ctypes.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -2117,7 +2117,7 @@ Utility functions
21172117
executable file. It may be an empty string.
21182118

21192119
.. availability:: Windows, macOS, iOS, glibc, BSD libc, musl
2120-
.. versionadded:: next
2120+
.. versionadded:: 3.14
21212121

21222122
.. function:: FormatError([code])
21232123

Doc/library/imaplib.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -392,7 +392,7 @@ An :class:`IMAP4` instance has the following methods:
392392
iteration, and public method to remain stable, but should not subclass,
393393
instantiate, compare, or otherwise directly reference the class.
394394

395-
.. versionadded:: next
395+
.. versionadded:: 3.14
396396

397397

398398
.. method:: IMAP4.list([directory[, pattern]])

Doc/library/inspect.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ attributes (see :ref:`import-mod-attrs` for module attributes):
316316

317317
Add ``__builtins__`` attribute to functions.
318318

319-
.. versionchanged:: next
319+
.. versionchanged:: 3.14
320320

321321
Add ``f_generator`` attribute to frames.
322322

Doc/library/os.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -1683,7 +1683,7 @@ or `the MSDN <https://msdn.microsoft.com/en-us/library/z0kc8e3z.aspx>`_ on Windo
16831683
:meth:`io.BufferedIOBase.readinto`, :meth:`io.BufferedIOBase.read`, or
16841684
:meth:`io.TextIOBase.read`
16851685

1686-
.. versionadded:: next
1686+
.. versionadded:: 3.14
16871687

16881688

16891689
.. function:: sendfile(out_fd, in_fd, offset, count)

Doc/library/shutil.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -529,7 +529,7 @@ file then shutil will silently fallback on using less efficient
529529
.. versionchanged:: 3.14
530530
Solaris now uses :func:`os.sendfile`.
531531

532-
.. versionchanged:: next
532+
.. versionchanged:: 3.14
533533
Copy-on-write or server-side copy may be used internally via
534534
:func:`os.copy_file_range` on supported Linux filesystems.
535535

Doc/library/stdtypes.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -2871,7 +2871,7 @@ objects.
28712871
>>> (grow, len(grow))
28722872
(bytearray(b'abc\x00\x00'), 5)
28732873

2874-
.. versionadded:: next
2874+
.. versionadded:: 3.14
28752875

28762876
Since bytearray objects are sequences of integers (akin to a list), for a
28772877
bytearray object *b*, ``b[0]`` will be an integer, while ``b[0:1]`` will be

Doc/library/sys.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -1280,7 +1280,7 @@ always available. Unless explicitly noted otherwise, all variables are read-only
12801280
to this function) are not guaranteed to be immortal in future versions,
12811281
and vice versa for mortal objects.
12821282

1283-
.. versionadded:: next
1283+
.. versionadded:: 3.14
12841284

12851285
.. impl-detail::
12861286

Doc/library/turtle.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -1325,7 +1325,7 @@ Filling
13251325
>>> turtle.circle(80)
13261326
>>> turtle.end_fill()
13271327

1328-
.. versionadded:: next
1328+
.. versionadded:: 3.14
13291329

13301330

13311331
.. function:: begin_fill()
@@ -1713,7 +1713,7 @@ Special Turtle methods
17131713
... turtle.right(60)
17141714
... turtle.forward(100)
17151715

1716-
.. versionadded:: next
1716+
.. versionadded:: 3.14
17171717

17181718

17191719
.. function:: begin_poly()
@@ -2008,7 +2008,7 @@ Animation control
20082008
... fd(dist)
20092009
... rt(90)
20102010

2011-
.. versionadded:: next
2011+
.. versionadded:: 3.14
20122012

20132013

20142014
.. function:: delay(delay=None)

Doc/library/uuid.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -297,15 +297,15 @@ The :mod:`uuid` module defines the special Nil and Max UUID values:
297297
A special form of UUID that is specified to have all 128 bits set to zero
298298
according to :rfc:`RFC 9562, §5.9 <9562#section-5.9>`.
299299

300-
.. versionadded:: next
300+
.. versionadded:: 3.14
301301

302302

303303
.. data:: MAX
304304

305305
A special form of UUID that is specified to have all 128 bits set to one
306306
according to :rfc:`RFC 9562, §5.10 <9562#section-5.10>`.
307307

308-
.. versionadded:: next
308+
.. versionadded:: 3.14
309309

310310

311311
.. seealso::

Doc/using/configure.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -626,7 +626,7 @@ also be used to improve performance.
626626
`preserve_none <https://clang.llvm.org/docs/AttributeReference.html#preserve-none>`_
627627
calling convention. For example, Clang 19 and newer supports this feature.
628628

629-
.. versionadded:: next
629+
.. versionadded:: 3.14
630630

631631
.. option:: --without-mimalloc
632632

Include/patchlevel.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@
2121
#define PY_MINOR_VERSION 14
2222
#define PY_MICRO_VERSION 0
2323
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_ALPHA
24-
#define PY_RELEASE_SERIAL 4
24+
#define PY_RELEASE_SERIAL 5
2525

2626
/* Version as a string */
27-
#define PY_VERSION "3.14.0a4+"
27+
#define PY_VERSION "3.14.0a5"
2828
/*--end constants--*/
2929

3030

0 commit comments

Comments
 (0)