File tree Expand file tree Collapse file tree 3 files changed +4
-5
lines changed Expand file tree Collapse file tree 3 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -2287,7 +2287,7 @@ The C-API provides a basic mutual exclusion lock.
2287
2287
should not be used to make concurrency control decisions, as the lock
2288
2288
state may change immediately after the check.
2289
2289
2290
- .. versionadded:: next
2290
+ .. versionadded:: 3.14
2291
2291
2292
2292
.. _python-critical-section-api:
2293
2293
@@ -2372,7 +2372,7 @@ code triggered by the finalizer blocks and calls :c:func:`PyEval_SaveThread`.
2372
2372
2373
2373
On the default build, this macro expands to ``{``.
2374
2374
2375
- .. versionadded:: next
2375
+ .. versionadded:: 3.14
2376
2376
2377
2377
.. c:macro:: Py_END_CRITICAL_SECTION()
2378
2378
@@ -2418,7 +2418,7 @@ code triggered by the finalizer blocks and calls :c:func:`PyEval_SaveThread`.
2418
2418
2419
2419
On the default build, this macro expands to ``{``.
2420
2420
2421
- .. versionadded:: next
2421
+ .. versionadded:: 3.14
2422
2422
2423
2423
.. c:macro:: Py_END_CRITICAL_SECTION2()
2424
2424
Original file line number Diff line number Diff line change @@ -3035,6 +3035,7 @@ Porting to Python 3.14
3035
3035
* ``_Py_GetConfig() ``: :c:func: `PyConfig_Get ` and :c:func: `PyConfig_GetInt `
3036
3036
* ``_Py_HashBytes() ``: :c:func: `Py_HashBuffer `
3037
3037
* ``_Py_fopen_obj() ``: :c:func: `Py_fopen `
3038
+ * ``PyMutex_IsLocked() `` : :c:func: `PyMutex_IsLocked `
3038
3039
3039
3040
The `pythoncapi-compat project `_ can be used to get most of these new
3040
3041
functions on Python 3.13 and older.
Original file line number Diff line number Diff line change @@ -504,8 +504,6 @@ Porting to Python 3.15
504
504
505
505
* Private functions promoted to public C APIs:
506
506
507
- * ``PyMutex_IsLocked() `` : :c:func: `PyMutex_IsLocked `
508
-
509
507
The |pythoncapi_compat_project | can be used to get most of these new
510
508
functions on Python 3.14 and older.
511
509
You can’t perform that action at this time.
0 commit comments