Skip to content

Commit 57e0d17

Browse files
committed
Python 3.14.1
1 parent 49fe757 commit 57e0d17

File tree

209 files changed

+2451
-548
lines changed

Some content is hidden

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

209 files changed

+2451
-548
lines changed

Doc/c-api/init.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1555,7 +1555,7 @@ All of the following functions must be called after :c:func:`Py_Initialize`.
15551555
15561556
See :c:func:`PyUnstable_ThreadState_ResetStackProtection` for undoing this operation.
15571557
1558-
.. versionadded:: next
1558+
.. versionadded:: 3.14.1
15591559
15601560
.. warning::
15611561
@@ -1575,7 +1575,7 @@ All of the following functions must be called after :c:func:`Py_Initialize`.
15751575
15761576
See :c:func:`PyUnstable_ThreadState_SetStackProtection` for an explanation.
15771577
1578-
.. versionadded:: next
1578+
.. versionadded:: 3.14.1
15791579
15801580
.. warning::
15811581

Doc/library/pyexpat.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ common XML vulnerabilities.
254254
The corresponding :attr:`~ExpatError.lineno` and :attr:`~ExpatError.offset`
255255
should not be used as they may have no special meaning.
256256

257-
.. versionadded:: next
257+
.. versionadded:: 3.14.1
258258

259259
.. method:: xmlparser.SetAllocTrackerMaximumAmplification(max_factor, /)
260260

@@ -284,7 +284,7 @@ common XML vulnerabilities.
284284
that can be adjusted by :meth:`.SetAllocTrackerActivationThreshold`
285285
is exceeded.
286286

287-
.. versionadded:: next
287+
.. versionadded:: 3.14.1
288288

289289

290290
:class:`xmlparser` objects have the following attributes:

Doc/library/sqlite3.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1614,7 +1614,7 @@ Cursor objects
16141614
If the *size* parameter is used, then it is best for it to retain the same
16151615
value from one :meth:`fetchmany` call to the next.
16161616

1617-
.. versionchanged:: next
1617+
.. versionchanged:: 3.14.1
16181618
Negative *size* values are rejected by raising :exc:`ValueError`.
16191619

16201620
.. method:: fetchall()
@@ -1644,7 +1644,7 @@ Cursor objects
16441644
Read/write attribute that controls the number of rows returned by :meth:`fetchmany`.
16451645
The default value is 1 which means a single row would be fetched per call.
16461646

1647-
.. versionchanged:: next
1647+
.. versionchanged:: 3.14.1
16481648
Negative values are rejected by raising :exc:`ValueError`.
16491649

16501650
.. attribute:: connection

Include/patchlevel.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@
1919
/*--start constants--*/
2020
#define PY_MAJOR_VERSION 3
2121
#define PY_MINOR_VERSION 14
22-
#define PY_MICRO_VERSION 0
22+
#define PY_MICRO_VERSION 1
2323
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_FINAL
2424
#define PY_RELEASE_SERIAL 0
2525

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

3030

0 commit comments

Comments
 (0)