Skip to content

Commit 8cdaca8

Browse files
committed
Python 3.14.0a1
1 parent 3ea488a commit 8cdaca8

File tree

645 files changed

+7739
-1993
lines changed

Some content is hidden

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

645 files changed

+7739
-1993
lines changed

Doc/c-api/init.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -1195,7 +1195,7 @@ code, or when embedding the Python interpreter:
11951195
created by Python. Refer to
11961196
:ref:`cautions-regarding-runtime-finalization` for more details.
11971197
1198-
.. versionchanged:: next
1198+
.. versionchanged:: 3.14
11991199
Hangs the current thread, rather than terminating it, if called while the
12001200
interpreter is finalizing.
12011201
@@ -1257,7 +1257,7 @@ with sub-interpreters:
12571257
created by Python. Refer to
12581258
:ref:`cautions-regarding-runtime-finalization` for more details.
12591259
1260-
.. versionchanged:: next
1260+
.. versionchanged:: 3.14
12611261
Hangs the current thread, rather than terminating it, if called while the
12621262
interpreter is finalizing.
12631263
@@ -1547,7 +1547,7 @@ All of the following functions must be called after :c:func:`Py_Initialize`.
15471547
:c:func:`Py_END_ALLOW_THREADS`, and :c:func:`PyGILState_Ensure`,
15481548
and terminate the current thread if called while the interpreter is finalizing.
15491549
1550-
.. versionchanged:: next
1550+
.. versionchanged:: 3.14
15511551
Hangs the current thread, rather than terminating it, if called while the
15521552
interpreter is finalizing.
15531553

Doc/c-api/long.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -579,7 +579,7 @@ distinguished from a number. Use :c:func:`PyErr_Occurred` to disambiguate.
579579
On failure, return -1 with an exception set. This function always succeeds
580580
if *obj* is a :c:type:`PyLongObject` or its subtype.
581581
582-
.. versionadded:: next
582+
.. versionadded:: 3.14
583583
584584
585585
.. c:function:: PyObject* PyLong_GetInfo(void)

Doc/c-api/unicode.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -1575,7 +1575,7 @@ PyUnicodeWriter
15751575
The :c:type:`PyUnicodeWriter` API can be used to create a Python :class:`str`
15761576
object.
15771577
1578-
.. versionadded:: next
1578+
.. versionadded:: 3.14
15791579
15801580
.. c:type:: PyUnicodeWriter
15811581

Doc/library/ast.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -2491,7 +2491,7 @@ effects on the compilation of a program:
24912491
differ in whitespace or similar details. Attributes include line numbers
24922492
and column offsets.
24932493

2494-
.. versionadded:: next
2494+
.. versionadded:: 3.14
24952495

24962496

24972497
.. _ast-cli:

Doc/library/ctypes.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -2303,7 +2303,7 @@ These are the fundamental ctypes data types:
23032303
Represents the C :c:expr:`double complex` datatype, if available. The
23042304
constructor accepts an optional :class:`complex` initializer.
23052305

2306-
.. versionadded:: next
2306+
.. versionadded:: 3.14
23072307

23082308

23092309
.. class:: c_float_complex

Doc/library/dis.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -959,7 +959,7 @@ iterations of the loop.
959959
list of constants supported by this instruction. Used by the :keyword:`assert`
960960
statement to load :exc:`AssertionError`.
961961

962-
.. versionadded:: next
962+
.. versionadded:: 3.14
963963

964964

965965
.. opcode:: LOAD_BUILD_CLASS
@@ -1827,7 +1827,7 @@ iterations of the loop.
18271827
If ``type(STACK[-1]).__xxx__`` is not a method, leave
18281828
``STACK[-1].__xxx__; NULL`` on the stack.
18291829

1830-
.. versionadded:: next
1830+
.. versionadded:: 3.14
18311831

18321832

18331833
**Pseudo-instructions**

Doc/library/pathlib.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -1563,7 +1563,7 @@ Copying, moving and deleting
15631563
This argument has no effect when copying files on Windows (where
15641564
metadata is always preserved).
15651565

1566-
.. versionadded:: next
1566+
.. versionadded:: 3.14
15671567

15681568

15691569
.. method:: Path.copy_into(target_dir, *, follow_symlinks=True, \
@@ -1574,7 +1574,7 @@ Copying, moving and deleting
15741574
:meth:`Path.copy`. Returns a new :class:`!Path` instance pointing to the
15751575
copy.
15761576

1577-
.. versionadded:: next
1577+
.. versionadded:: 3.14
15781578

15791579

15801580
.. method:: Path.rename(target)

Doc/library/symtable.rst

+4-4
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ Examining Symbol Tables
256256

257257
Return ``True`` if the symbol is a type parameter.
258258

259-
.. versionadded:: next
259+
.. versionadded:: 3.14
260260

261261
.. method:: is_global()
262262

@@ -303,7 +303,7 @@ Examining Symbol Tables
303303
be free from the perspective of ``C.method``, thereby allowing
304304
the latter to return *1* at runtime and not *2*.
305305

306-
.. versionadded:: next
306+
.. versionadded:: 3.14
307307

308308
.. method:: is_assigned()
309309

@@ -313,13 +313,13 @@ Examining Symbol Tables
313313

314314
Return ``True`` if the symbol is a comprehension iteration variable.
315315

316-
.. versionadded:: next
316+
.. versionadded:: 3.14
317317

318318
.. method:: is_comp_cell()
319319

320320
Return ``True`` if the symbol is a cell in an inlined comprehension.
321321

322-
.. versionadded:: next
322+
.. versionadded:: 3.14
323323

324324
.. method:: is_namespace()
325325

Include/patchlevel.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@
2020
#define PY_MINOR_VERSION 14
2121
#define PY_MICRO_VERSION 0
2222
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_ALPHA
23-
#define PY_RELEASE_SERIAL 0
23+
#define PY_RELEASE_SERIAL 1
2424

2525
/* Version as a string */
26-
#define PY_VERSION "3.14.0a0"
26+
#define PY_VERSION "3.14.0a1"
2727
/*--end constants--*/
2828

2929
/* Version as a single 4-byte hex number, e.g. 0x010502B2 == 1.5.2b2.

0 commit comments

Comments
 (0)